Sha256: a243793b03eb22ca7e488286f2bd7ec32b1459c540b25607987776b1ef8462c8
Contents?: true
Size: 273 Bytes
Versions: 153
Compression:
Stored size: 273 Bytes
Contents
# frozen_string_literal: true module Arel # :nodoc: all module Nodes class True < Arel::Nodes::NodeExpression def hash self.class.hash end def eql?(other) self.class == other.class end alias :== :eql? end end end
Version data entries
153 entries across 148 versions & 12 rubygems