If a block is a closure, why does this code does not work, and how to make it work?

def R(arg)
  Class.new do
    def foo
      puts arg
    end
  end
end

class A < R("Hello!")
end

A.new.foo #throws undefined local variable or method `arg' for #<A:0x2840538>
link|improve this question

Can we see your error messages? – samoz Feb 18 '10 at 15:23
Error message is under comment in the sample. – yukas Feb 18 '10 at 21:23
@Earlz, thanks for editing. – yukas Feb 18 '10 at 21:27
feedback

2 Answers

up vote 19 down vote accepted

Blocks are closures and arg is indeed available inside the Class.new block. It's just not available inside the foo method because def starts a new scope. If you replace def with define_method, which takes a block, you'll see the result you want:

def R(arg)
    Class.new do
        define_method(:foo) do
           puts arg
        end
    end
end

class A < R("Hello!")
end

A.new.foo # Prints: Hello!
link|improve this answer
how would a method that takes parameters be defined? – Tempus Feb 18 '10 at 16:54
2  
@Geo: Using a block which takes parameters. E.g. define_method(:add_one) do |x| x+1 end – sepp2k Feb 18 '10 at 16:55
feedback

If you define the class dynamically, you can alter it as you like:

def R(arg)
  c = Class.new

  # Send the block through as a closure, not as an inline method
  # definition which interprets variables always as local to the block.
  c.send(:define_method, :foo) do
    arg
  end

  c
end

class A < R("Hello!")
end

puts A.new.foo.inspect
# => "Hello!"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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