I would like to pass an argument(s) to a method being defined using define_method, how would I do that?
|
1
|
|
|
|
|
|
The block that you pass to define_method can include some parameters. That's how your defined method accepts arguments. When you define a method you're really just nicknaming the block and keeping a reference to it in the class. The parameters come with the block. So:
|
|||
|
|
|
|
In addition to Kevin Conner's answer: block arguments do not support the same semantics as method arguments. You cannot define default arguments or block arguments. This is only fixed in Ruby 1.9 with the new alternative "stabby lambda" syntax which supports full method argument semantics. Example:
|
||||||||
|
