Skip to content

Instantly share code, notes, and snippets.

@banister
Created December 8, 2011 00:34
Show Gist options
  • Save banister/3ddb6be64c268f3d45c5 to your computer and use it in GitHub Desktop.
Save banister/3ddb6be64c268f3d45c5 to your computer and use it in GitHub Desktop.
x = "xyz"
# => "xyz"
y = "hello"
# => "hello"
class << x; self; end.class_eval { define_method(:foo) { y } }
# => #<Proc:0x0000000102327c30@(pry):4>
x.foo
# => "hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment