File: hash.rb

package info (click to toggle)
ruby-hashie 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 272 kB
  • ctags: 179
  • sloc: ruby: 1,898; makefile: 4
file content (33 lines) | stat: -rw-r--r-- 936 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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 keys)
    def to_hash(options={})
      out = {}
      keys.each do |k|
        if self[k].is_a?(Array)
          k = options[:symbolize_keys] ? k.to_sym : k.to_s
          out[k] ||= []
          self[k].each do |array_object|
            out[k] << (Hash === array_object ? array_object.to_hash : array_object)
          end
        else
          k = options[:symbolize_keys] ? k.to_sym : k.to_s
          out[k] = Hash === self[k] ? self[k].to_hash : self[k]
        end
      end
      out
    end

    # The C geneartor for the json gem doesn't like mashies
    def to_json(*args)
      to_hash.to_json(*args)
    end
  end
end