Skip to content

Instantly share code, notes, and snippets.

@newtonapple
Created December 14, 2011 04:37
Show Gist options
  • Save newtonapple/1475282 to your computer and use it in GitHub Desktop.
Save newtonapple/1475282 to your computer and use it in GitHub Desktop.
Mash.rb
class Mash < Hash
def method_missing(name, *args, &block)
if args.size == 0
val = self[name.to_s]
if val.is_a?(Hash)
self.class[val]
else
val
end
else
super
end
end
end
m = Mash['Web' => {'Urls' => ['http://yo.com']}]
m.Web.Urls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment