Skip to content

Instantly share code, notes, and snippets.

@leemour
Created December 11, 2013 08:00
Show Gist options
  • Select an option

  • Save leemour/7906611 to your computer and use it in GitHub Desktop.

Select an option

Save leemour/7906611 to your computer and use it in GitHub Desktop.
Define method in ruby
def method_missing(m)
self.class.class_exec do
define_method(:screech) {puts "This is the new screech."}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment