up vote 10 down vote favorite
4
share [g+] share [fb]

This is useful if you are trying to create class methods metaprogramatically:

def self.create_methods(method_name)
    # To create instance methods:
    define_method method_name do
      ...
    end

    # To create class methods that refer to the args on create_methods:
    ???
end

My answer to follow...

link|improve this question

67% accept rate
2  
-1 - you only asked the question to demonstrate your own answer – rampion Apr 15 '09 at 23:06
Correct. So you also think it's a bad question? – Chinasaur Apr 16 '09 at 3:26
1  
Just because I have an answer, doesn't mean it's the best answer; there's plenty of room for discussion here. Anyway, I don't see anything wrong with posting a question even if you think you know the best answer, so long as you think other people will be interested... – Chinasaur Apr 16 '09 at 22:35
1  
This is hilarious!!!! Please continue rep-whoring Chinasaur, don't let the haters bring you down. – Vanson Samuel Apr 17 '09 at 10:32
4  
@Chuck, this is a good behavior, and is encouraged in the FAQ. The reason is simple - posting answered questions can help other users with this question. – Elazar Leibovich May 15 '11 at 7:20
feedback

3 Answers

up vote 19 down vote accepted

I think in Ruby 1.9 you can do this:

class A
  define_singleton_method :loudly do |message|
    puts message.upcase
  end
end

A.loudly "my message"

# >> MY MESSAGE
link|improve this answer
2  
Confirmed working in 1.9.2p0 – bloudermilk Jan 18 '11 at 0:07
feedback

I prefer using send to call define_method, and I also like to create a metaclass method to access the metaclass:

class Object
  def metaclass
    class << self
      self
    end
  end
end

class MyClass
  # Defines MyClass.my_method
  self.metaclass.send(:define_method, :my_method) do
    ...
  end
end
link|improve this answer
Thanks! Definitely there are ways to make this nicer for yourself. But if you are working on an open source plugin, for example, I think it's nicer not to clog up the namespace with metaclass, so it's nice to know the easy, standalone shorthand. – Chinasaur Apr 16 '09 at 3:21
I decided to go with my original answer. My understanding is that using send() to access private methods if going away in Ruby 1.9, so that didn't seem like a good thing to use. Plus if you are defining more than one method, instance_evaling a block is cleaner. – Chinasaur May 6 '09 at 23:56
feedback

Derived from: Jay and Why, who also provide ways to make this prettier.

self.create_class_method(method_name)
  (class << self; self; end).instance_eval do
    define_method method_name do
      ...
    end
  end
end


Update: from VR's contribution below; a more concise method (as long as you're only defining one method this way) that is still standalone:

self.create_class_method(method_name)
  (class << self; self; end).send(:define_method, method_name) do
    ...
  end
end

but note that using send() to access private methods like define_method() is not necessarily a good idea (my understanding is that it is going away in Ruby 1.9).

link|improve this answer
Better (?) alternative may be to put things in a module and then have your create_class_method extend the module onto the class??? See: blog.jayfields.com/2008/07/ruby-underuse-of-modules.html – Chinasaur Sep 24 '09 at 14:21
feedback

Your Answer

 
or
required, but never shown

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