Sha256: 8acd03574dc11ab208ff25ceeacd2cb1a06bd59f3603e896d1f14b335a5f645c
Contents?: true
Size: 448 Bytes
Versions: 10
Compression:
Stored size: 448 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel class InsertManager < Arel::TreeManager def ==(other) other.is_a?(self.class) && @ast == other.ast end end module Visitors class Dot def visit_Arel_InsertManager(o) visit_edge o, 'ast' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
10 entries across 10 versions & 1 rubygems