Sha256: 3dfe44767dcd4a73a77dd2e7c5496a6fee19a5e0a5032716c5e01cb215c3ee61
Contents?: true
Size: 487 Bytes
Versions: 10
Compression:
Stored size: 487 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel class SelectManager def ==(other) other.is_a?(self.class) && @ast == other.ast && @ctx == other.ctx end protected attr_reader :ctx end module Visitors class Dot def visit_Arel_SelectManager(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