Skip to content

Instantly share code, notes, and snippets.

@jlogsdon
Created July 31, 2012 23:56
Show Gist options
  • Save jlogsdon/3221825 to your computer and use it in GitHub Desktop.
Save jlogsdon/3221825 to your computer and use it in GitHub Desktop.
class FreeformHash < Hash
def initialize(*args)
super(*args)
self.default = proc { |hash, key| hash[key] = FreeformHash.new }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment