Created
December 14, 2011 04:37
-
-
Save newtonapple/1475282 to your computer and use it in GitHub Desktop.
Mash.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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