Sha256: 860bfb547c1e896ba71f2406dbd67d09f2895a6545e2d058bfe692659aebfef1
Contents?: true
Size: 423 Bytes
Versions: 10
Compression:
Stored size: 423 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class BitString < Arel::Nodes::Unary end end module Visitors class ToSql def visit_Arel_Nodes_BitString(o, collector) collector << "B'#{o.expr[1..-1]}'" end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
10 entries across 10 versions & 1 rubygems