Sha256: 8cead527cb93e9cf5b3081011c4d8d9f219e3db00610bea2cb6f848dd110b175

Contents?: true

Size: 225 Bytes

Versions: 6

Compression:

Stored size: 225 Bytes

Contents

# frozen_string_literal: true

class ActiveSupport::HashWithIndifferentAccess
  def ==(other)
    if other.respond_to? :with_indifferent_access
      super other.with_indifferent_access
    else
      super
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
acfs-1.7.0 spec/support/hash.rb
acfs-1.6.0 spec/support/hash.rb
acfs-1.5.1 spec/support/hash.rb
acfs-1.5.0 spec/support/hash.rb
acfs-1.4.0 spec/support/hash.rb
acfs-1.3.4 spec/support/hash.rb