aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
blob: 2353cfaf3b97d789c5d5050f2da463786aa16c45 (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_reader, :[] unless method_defined?(:regular_reader)
  
  def [](key)
    case key
      when Symbol: regular_reader(key) || regular_reader(key.to_s)
      when String: regular_reader(key) || regular_reader(key.to_sym)
      else regular_reader(key)
    end
  end

  alias_method :regular_writer, :[]= unless method_defined?(: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