Sha256: b492693ccee2abbb86d9179aee854e180d7c4534a796064acc966f6ca7e2c250

Contents?: true

Size: 1.85 KB

Versions: 22

Compression:

Stored size: 1.85 KB

Contents

# this class has dubious semantics and we only have it so that
# people can write params[:key] instead of params['key']

class HashWithIndifferentAccess < Hash
  def initialize(constructor = {})
    if constructor.is_a?(Hash)
      super()
      update(constructor)
    else
      super(constructor)
    end
  end

  def default(key = nil)
    if key.is_a?(Symbol) && include?(key = key.to_s)
      self[key]
    else
      super
    end
  end

  alias_method :regular_writer, :[]= unless method_defined?(:regular_writer)
  alias_method :regular_update, :update unless method_defined?(:regular_update)

  def []=(key, value)
    regular_writer(convert_key(key), convert_value(value))
  end

  def update(other_hash)
    other_hash.each_pair { |key, value| regular_writer(convert_key(key), convert_value(value)) }
    self
  end

  alias_method :merge!, :update

  def key?(key)
    super(convert_key(key))
  end

  alias_method :include?, :key?
  alias_method :has_key?, :key?
  alias_method :member?, :key?

  def fetch(key, *extras)
    super(convert_key(key), *extras)
  end

  def values_at(*indices)
    indices.collect {|key| self[convert_key(key)]}
  end

  def dup
    HashWithIndifferentAccess.new(self)
  end

  def merge(hash)
    self.dup.update(hash)
  end

  def delete(key)
    super(convert_key(key))
  end

  def stringify_keys!; self end
  def symbolize_keys!; self end

  protected
    def convert_key(key)
      key.kind_of?(Symbol) ? key.to_s : key
    end
    def convert_value(value)
      value.is_a?(Hash) ? value.with_indifferent_access : value
    end
end

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

Version data entries

22 entries across 22 versions & 6 rubygems

Version Path
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-1.4.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-1.4.4 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-1.4.2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-1.4.0 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-1.4.1 lib/active_support/core_ext/hash/indifferent_access.rb
cnuconfig-1.0.0 lib/indifferent_access.rb
monetra-ruby-0.0.6 lib/monetra/active_support/core_ext/hash/indifferent_access.rb
radiant-0.6.1 vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
radiant-0.6.0 vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
radiant-0.6.3 vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
radiant-0.6.2 vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
radiant-0.6.4 vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb