Skip to content

Instantly share code, notes, and snippets.

@kronos
Created March 18, 2010 23:26
Show Gist options
  • Save kronos/337045 to your computer and use it in GitHub Desktop.
Save kronos/337045 to your computer and use it in GitHub Desktop.
class X < Hash
attr_reader :x
def initialize
@x = nil
end
def some_method
@x = 2
end
end
hash = X.new
hash.some_method
another_hash = hash.dup
p another_hash.x #=> should be 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment