class Hashie::Hash
not be available in all libraries.
functions baked in such as stringify_keys that may
A Hashie Hash is simply a Hash that has convenience
def to_hash(options = {})
def to_hash(options = {}) out = {} keys.each do |k| key = options[:symbolize_keys] ? k.to_sym : k.to_s out[key] = Hashie::Hash === self[k] ? self[k].to_hash : self[k] end out end
def to_json(*args)
def to_json(*args) to_hash.to_json(*args) end