Skip to content

Instantly share code, notes, and snippets.

@zzak
Created February 16, 2011 19:49
Show Gist options
  • Save zzak/830035 to your computer and use it in GitHub Desktop.
Save zzak/830035 to your computer and use it in GitHub Desktop.
define_method hello, world!
def add_method(obj, mod, &blk)
obj.class_eval { define_method(mod, &blk) }
end
add_method(String, :greet) { "Hello, #{self}" }
"world".greet #=> "Hello, world!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment