vote up 9 vote down star
1

I would like to pass an argument(s) to a method being defined using define_method, how would I do that?

flag

2 Answers

vote up 9 vote down check

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:

define_method(:say_hi) { |other| puts "Hi, " + other }
link|flag
vote up 8 vote down

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:

# Works
def meth(default = :foo, *splat, &block) puts 'Bar'; end

# Doesn't work
define_method :meth { |default = :foo, *splat, &block| puts 'Bar' }

# This works in Ruby 1.9 (modulo typos, I don't actually have it installed)
define_method :meth, ->(default = :foo, *splat, &block) { puts 'Bar' }
link|flag
1  
Actually, I believe block arguments on define_method do support splat, which can provides a round-a-bout way to define default arguments too. – Chinasaur Apr 15 at 17:00
Chinasaur is correct about block arguments allowing splats. I've confirmed this in both Ruby 1.8.7 and 1.9.1. – Peter Wagenet Oct 4 at 22:34
Thanks, I forgot about this. Fixed now. – Jörg W Mittag Oct 5 at 8:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.