Sha256: 328a4193accc9d21c5748cbe5f188a8ef5fbc81264b2a8478c6daf2b0a51ab18

Contents?: true

Size: 896 Bytes

Versions: 30

Compression:

Stored size: 896 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

30 entries across 30 versions & 2 rubygems

Version Path
activesupport-4.0.13 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.13.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.11.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.12 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.11 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.10 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.10.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.10.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.9 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.8 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.7 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.6 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.6.rc3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.6.rc2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.6.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.5 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.4 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.4.rc1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-4.0.2 lib/active_support/core_ext/hash/indifferent_access.rb