[Rails] meta-programming 101
how can I get the following to work, what am I not understanding about
how modules work?
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 rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home