Sha256: fb323135ccd6c8f4b38e1473fae30ab6883a60b332a237e33b354a704d604634

Contents?: true

Size: 920 Bytes

Versions: 155

Compression:

Stored size: 920 Bytes

Contents

# frozen_string_literal: true

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(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

155 entries across 144 versions & 16 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.9 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.8 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.7 lib/active_support/core_ext/hash/indifferent_access.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/hash/indifferent_access.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.6 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.5 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.4 lib/active_support/core_ext/hash/indifferent_access.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/hash/indifferent_access.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/hash/indifferent_access.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/hash/indifferent_access.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.3 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.2 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.0.6.1 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.7 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.0.6 lib/active_support/core_ext/hash/indifferent_access.rb
activesupport-6.1.6.1 lib/active_support/core_ext/hash/indifferent_access.rb