class Hashie::Mash

def respond_to?(method_name)

set in addition to normal respond_to? functionality.
Will return true if the Mash has had a key
def respond_to?(method_name)
  return true if key?(method_name)
  super
end