aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/core_ext/hash/indifferent_access.rb
blob: 3fe099986650abf94c82fb4cc4db3d261a167433 (plain) (blame)
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
34
35
36
37
38
class HashWithIndifferentAccess < Hash
  def initialize(constructor)
    if constructor.is_a?(Hash)
      super()
      update(constructor.symbolize_keys)
    else
      super(constructor)
    end
  end
  
  alias_method :regular_read, :[]
  
  def [](key)
    case key
      when Symbol: regular_read(key) || regular_read(key.to_s)
      when String: regular_read(key) || regular_read(key.to_sym)
      else regular_read(key)
    end
  end

  alias_method :regular_writer, :[]=
  
  def []=(key, value)
    regular_writer(key.is_a?(String) ? key.to_sym : key, value)
  end
end

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Hash #:nodoc:
      module IndifferentAccess
        def with_indifferent_access
          HashWithIndifferentAccess.new(self)
        end
      end
    end
  end
end