class Hashie::Mash
def respond_to?(method_name, include_private = false)
Will return true if the Mash has had a key
def respond_to?(method_name, include_private = false) return true if key?(method_name) || prefix_method?(method_name) super end
def respond_to?(method_name, include_private = false) return true if key?(method_name) || prefix_method?(method_name) super end