Sha256: 607fac642924de5927b69f88418dad8d47c0ca0f5d1c55cb061c4f9ec218fdb7

Contents?: true

Size: 420 Bytes

Versions: 13

Compression:

Stored size: 420 Bytes

Contents

require 'arel/nodes/binary'
module Arel
  module Nodes
    class ContainedWithin < Arel::Nodes::Binary
      def operator; :<< end
    end

    class ContainedWithinEquals < Arel::Nodes::Binary
      def operator; '<<='.to_sym end
    end

    class Contains < Arel::Nodes::Binary
      def operator; :>> end
    end

    class ContainsEquals < Arel::Nodes::Binary
      def operator; '>>='.to_sym end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
postgres_ext-2.4.0.beta.1 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.3.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.2.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.1.3 lib/postgres_ext/arel/nodes/contained_within.rb
activerecord-postgis-array-0.3.4 lib/activerecord-postgis-array/arel/nodes/contained_within.rb
postgres_ext-2.1.2 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.1.1 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.1.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-2.0.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-1.0.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-0.4.0 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-0.3.1 lib/postgres_ext/arel/nodes/contained_within.rb
postgres_ext-0.3.0 lib/postgres_ext/arel/nodes/contained_within.rb