Sha256: 8462e3fe11e7b647a3a14d1967f80cc40c6bcbfd5ef9794acd60188a3909a594

Contents?: true

Size: 906 Bytes

Versions: 43

Compression:

Stored size: 906 Bytes

Contents

require 'active_support/hash_with_indifferent_access'

class Hash
  # Returns an <tt>ActiveSupport::HashWithIndifferentAccess</tt> out of its receiver:
  #
  #   {:a => 1}.with_indifferent_access["a"] # => 1
  #
  def with_indifferent_access
    ActiveSupport::HashWithIndifferentAccess.new_from_hash_copying_default(self)
  end

  # Called when object is nested under an object that receives
  # #with_indifferent_access. This method will be called on the current object
  # by the enclosing object and is aliased to #with_indifferent_access by
  # default. Subclasses of Hash may overwrite this method to return +self+ if
  # converting to an <tt>ActiveSupport::HashWithIndifferentAccess</tt> would not be
  # desirable.
  #
  #   b = {:b => 1}
  #   {:a => b}.with_indifferent_access["a"] # calls b.nested_under_indifferent_access
  #
  alias nested_under_indifferent_access with_indifferent_access
end

Version data entries

43 entries across 38 versions & 9 rubygems

Version Path
activesupport-3.2.15 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.15.rc3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.15.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.15.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
shadow_db_credentials-1.1.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.14 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.14.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.14.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
swipe-rails-0.0.5 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
font-awesome-rails-3.1.1.2 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
font-awesome-rails-3.1.1.1 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
challah-1.0.0.beta3 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
fc-webicons-0.0.4 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
challah-1.0.0.beta2 vendor/bundle/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
challah-1.0.0.beta vendor/bundle/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
fc-webicons-0.0.3 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.13/lib/active_support/core_ext/hash/indifferent_access.rb