Sha256: ab8cc379759341a50ac659a49ae8c5739bcdf88b78943c6075694e2c2a32bfda

Contents?: true

Size: 226 Bytes

Versions: 1

Compression:

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

1 entries across 1 versions & 1 rubygems

Version Path
acfs-2.0.0 spec/support/hash.rb