Looks up the path provided
my_hash.at_path("foo.bar.baz") # looks in my_hash['foo']['bar']['baz']
Parameters:
String the path to lookup
27 28 29
# File 'lib/hash_path.rb', line 27 def at_path(path) at_path!(path) rescue nil end