Skip to content

Instantly share code, notes, and snippets.

@rve
Created July 3, 2012 15:34
Show Gist options
  • Save rve/3040506 to your computer and use it in GitHub Desktop.
Save rve/3040506 to your computer and use it in GitHub Desktop.
a = 'foo'
class << a
def inspect
'"bar"'
end
end
a.inspect # => "bar"
a = 'foo' # new object, new singleton class
a.inspect # => "foo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment