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

Version Path
activerecord-6.0.2 lib/arel/nodes/true.rb
activerecord-6.0.2.rc2 lib/arel/nodes/true.rb
activerecord-6.0.2.rc1 lib/arel/nodes/true.rb
activerecord-6.0.1 lib/arel/nodes/true.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/arel/nodes/true.rb
activerecord-6.0.1.rc1 lib/arel/nodes/true.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/arel/nodes/true.rb
activerecord-6.0.0 lib/arel/nodes/true.rb
activerecord-6.0.0.rc2 lib/arel/nodes/true.rb
activerecord-6.0.0.rc1 lib/arel/nodes/true.rb
activerecord-6.0.0.beta3 lib/arel/nodes/true.rb
activerecord-6.0.0.beta2 lib/arel/nodes/true.rb
activerecord-6.0.0.beta1 lib/arel/nodes/true.rb