Sha256: 23cd3cd36771f211f273dd58b555fcf773ac55f1f67a14b36de1449ff1b277c5

Contents?: true

Size: 674 Bytes

Versions: 118

Compression:

Stored size: 674 Bytes

Contents

module Arel
  module Nodes
    class Binary < Arel::Nodes::Node
      attr_accessor :left, :right

      def initialize left, right
        @left  = left
        @right = right
      end

      def initialize_copy other
        super
        @left  = @left.clone if @left
        @right = @right.clone if @right
      end
    end

    %w{
      As
      Assignment
      Between
      DoesNotMatch
      GreaterThan
      GreaterThanOrEqual
      Join
      LessThan
      LessThanOrEqual
      Matches
      NotEqual
      NotIn
      Or
      Union
      UnionAll
      Intersect
      Except
    }.each do |name|
      const_set name, Class.new(Binary)
    end
  end
end

Version data entries

118 entries across 100 versions & 14 rubygems

Version Path
dirty_history-0.6.5 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb
challah-0.8.1 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-rolls-0.1.0 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-0.8.0.pre vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-0.7.1 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
dirty_history-0.6.4 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb
challah-0.7.0 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-0.7.0.pre2 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
dirty_history-0.6.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb
challah-0.7.0.pre vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
challah-0.6.2 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb
dirty_history-0.6.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb
dirty_history-0.6.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/lib/arel/nodes/binary.rb
initforthe-cookies-0.0.1 vendor/bundle/gems/arel-3.0.2/lib/arel/nodes/binary.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/rails-uploader-0.0.1/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/lib/arel/nodes/binary.rb