Skip to content

Instantly share code, notes, and snippets.

@zismailov
Created November 26, 2016 13:22
Show Gist options
  • Save zismailov/d444fc2aeca768b10b472803ec610a5b to your computer and use it in GitHub Desktop.
Save zismailov/d444fc2aeca768b10b472803ec610a5b to your computer and use it in GitHub Desktop.
class Foo
def bar
:bar
end
end
a = Foo.new
def a.bar
class << self
def bar
:foo
end
end
end
puts a.bar
puts a.bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment