Sha256: c46d0c649d5d3194abc26ab77daed165ffe4424f0d9681402f121ea5a565b4d3

Contents?: true

Size: 917 Bytes

Versions: 48

Compression:

Stored size: 917 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
  #   # => {"b"=>32}
  alias nested_under_indifferent_access with_indifferent_access
end

Version data entries

48 entries across 48 versions & 5 rubygems

Version Path
activesupport-4.1.16 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.16.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.15 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.15.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.14.2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.14.1 lib/active_support/core_ext/hash/indifferent_access.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/core_ext/hash/indifferent_access.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/core_ext/hash/indifferent_access.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/activesupport-4.1.13/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.14 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.14.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.14.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.13 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.13.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.12 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.12.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.11 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.10 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.10.rc4 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.1.10.rc3 lib/active_support/core_ext/hash/indifferent_access.rb