class Fred class << self def self.say_hello puts "Hi!" end end endI have figured out one of possible way is
klass = class << Fred; self; end klass.singleton_methods #=> ["constants","nesting", # "say_hello"] klass.say_hello #Hi!
class Fred class << self def self.say_hello puts "Hi!" end end endI have figured out one of possible way is
klass = class << Fred; self; end klass.singleton_methods #=> ["constants","nesting", # "say_hello"] klass.say_hello #Hi!
No comments:
Post a Comment