Skip to content

Instantly share code, notes, and snippets.

@knzai
Created February 24, 2010 15:41
Show Gist options
  • Save knzai/313526 to your computer and use it in GitHub Desktop.
Save knzai/313526 to your computer and use it in GitHub Desktop.
class Wizard
# class << self
# self.class_eval do
# define_method :convene_council do
# puts "The council is in session!"
# end
# end
# end
def self.metaclass
class << self
self.class
end
end
metaclass.send :define_method, :convene_council do
puts "The council is in session!"
end
end
Wizard.convene_council
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment