stormy-weather/lib/class-ext.rb
2012-02-15 19:26:56 -08:00

13 lines
213 B
Ruby

# Copyright 2012 Sami Samhuri <sami@samhuri.net>
class Class
def singleton
(class <<self; self end)
end
def define_class_method(name, &body)
singleton.send(:define_method, name, &body)
end
end