module MakeMethod
def self.make_method( name )
define_method( name ) do |count|
puts "you called method #{name.to_s}"
puts "the count is #{count}"
end
end
end
class Person
include MakeMethod
make_method :hello
make_method :bye
def initialize( name )
@name = name
end
def greet
puts "Hello! I'm #...@name}"
end
end
--
Kind Regards,
Rajinder Yadav
--
You received this message because you are subscribed to the Google Groups "Ruby on
Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.
how can I get the following to work, what am I not understanding about
how modules work?
- [Rails] meta-programming 101 Rajinder Yadav
- [Rails] Re: meta-programming 101 Rajinder Yadav
- Re: [Rails] meta-programming 101 botp
- Re: [Rails] meta-programming 101 Rajinder Yadav
- [Rails] Re: meta-programming 101 Robert Pankowecki (rupert)
- Re: [Rails] Re: meta-programmi... Rajinder Yadav

