I want to write small class with some methods, which actualy belongs to other classes, so how can I define methods in other classes which are copies of existing. I believe it is metaprogramming magi I don't understand.

class Foo
  def initialize
    # with blocks, I would just pass block, but this is methods
    # so this won't work
    Bar.class_eval(perform)
    Bar.class_eval(process)
    Bar.class_eval(save)
  end

  def perform
    1+1
  end

  def process
    # some code
  end

  def save
    # some code
  end
end

class Bar; end

foo = Foo.new
foo.perform
#=> 2
Bar.test
#=> 1

Why I need this? I am working on gem which takes a class with just three methods. On initializing (which ill be hidden in parent class) it will pass this methods to different classes. I can make this with blocks, but with methods it is little cleaner.

PS: It is like copying methods from one class to another

PSS: Or... how to convert method to proc, so I can pass it to class_eval

link|improve this question

1  
maybe you must to use delegation? khelll.com/blog/ruby/delegation-in-ruby – Fivell Feb 15 at 13:23
Can't you just include a module? – Sergio Tulentsev Feb 15 at 13:24
@Fivell, maybe! I need to read about delegation right now – fl00r Feb 15 at 13:26
added link with examples – Fivell Feb 15 at 13:26
@Sergio Tulentsev in this case - no – fl00r Feb 15 at 13:27
show 5 more comments
feedback

1 Answer

up vote 3 down vote accepted

To convert a method to something which can be called like a Proc, use obj.method(:method_name). That will give you a bound Method object, which when called, will be invoked on obj. If you want to invoke it on a different object of the same class, you can call method.unbind.bind(different_obj).

That still doesn't allow you to "copy" methods from one class to another. If you want to allow the user to pass a class which defines 3 methods, rather than passing 3 blocks, it might work better if you store a reference to that class (or an instance of it) internally, and call methods on it as required. That's what the person who commented about "delegation" meant.

OR, you can let the user pass a Module, and make your own class include or extend the module (as required).

link|improve this answer
Reference to user's class object is a good idea, actually – fl00r Feb 15 at 13:51
I believe I will use reference :) But now I am interested if I can copy methods between classes in Ruby! – fl00r Feb 15 at 13:54
I don't think there is, but if you find a way, please post it. I'd like to know too. – Alex D Feb 15 at 13:57
I believed that metaprogramming can do everything :) Thank you for your answer – fl00r Feb 15 at 13:58
feedback

Your Answer

 
or
required, but never shown

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