Sha256: e11f32a4b2f79a302a17c4511e468a3ff85bb5d980d61d867dfd9e10a3b7ff67
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
require 'hashie/hash_extensions' module Hashie # A Hashie Hash is simply a Hash that has convenience # functions baked in such as stringify_keys that may # not be available in all libraries. class Hash < ::Hash include HashExtensions # Converts a mash back to a hash (with stringified or symbolized keys) def to_hash(options = {}) out = {} keys.each do |k| assignment_key = k.to_s assignment_key = assignment_key.to_sym if options[:symbolize_keys] if self[k].is_a?(Array) out[assignment_key] ||= [] self[k].each do |array_object| out[assignment_key] << (Hash === array_object ? flexibly_convert_to_hash(array_object, options) : array_object) end else out[assignment_key] = Hash === self[k] ? flexibly_convert_to_hash(self[k], options) : self[k] end end out end # The C generator for the json gem doesn't like mashies def to_json(*args) to_hash.to_json(*args) end private def flexibly_convert_to_hash(object, options = {}) if object.method(:to_hash).arity == 0 object.to_hash else object.to_hash(options) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hashie-2.1.1 | lib/hashie/hash.rb |