Sha256: ce164c2f8b7be73c7a65175fe0248cbe8c2d0d2b400850d846f727505a8c309e

Contents?: true

Size: 916 Bytes

Versions: 61

Compression:

Stored size: 916 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"=>1}
  alias nested_under_indifferent_access with_indifferent_access
end

Version data entries

61 entries across 59 versions & 11 rubygems

Version Path
activesupport-4.2.11.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.11.2 lib/active_support/core_ext/hash/indifferent_access.rb
opal-activesupport-0.3.3 opal/active_support/core_ext/hash/indifferent_access.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/hash/indifferent_access.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/activesupport-4.2.11.1/lib/active_support/core_ext/hash/indifferent_access.rb
opal-activesupport-0.3.2 opal/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.11.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.11 lib/active_support/core_ext/hash/indifferent_access.rb
opal-activesupport-0.3.1 opal/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.10 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.10.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.9 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.9.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.9.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-4.2.8/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.8 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.8.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.7.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.7 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.2.7.rc1 lib/active_support/core_ext/hash/indifferent_access.rb