class Hashie::Mash

def [](key)

any key passed in to a string before retrieving.
Retrieves an attribute set in the Mash. Will convert
def [](key)
  value = regular_reader(convert_key(key))
  yield value if block_given?
  value
end