Sha256: 897424c4a0332abcd61e03c017607adada9d415a7971c9e2d41ba28dea4117b0
Contents?: true
Size: 498 Bytes
Versions: 12
Compression:
Stored size: 498 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class NotBetween < Arel::Nodes::Between end end module Visitors class ToSql def visit_Arel_Nodes_NotBetween(o, collector) collector = visit o.left, collector collector << ' NOT BETWEEN ' visit o.right, collector end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
12 entries across 12 versions & 1 rubygems