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
shadow_db_credentials-1.1.4 lib/active_support/core_ext/hash/indifferent_access.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22.5 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22.4 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22.2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.22 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.21 lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.20 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.19 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.18 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.17 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-3.2.16 lib/active_support/core_ext/hash/indifferent_access.rb