Sha256: e69abaf23f1ed82897f459cc5e0608beaba1048d41f5dcbcdbe488e63a8923d0
Contents?: true
Size: 476 Bytes
Versions: 10
Compression:
Stored size: 476 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel module Nodes class Unknown < Arel::Nodes::Node end end module Visitors class ToSql def visit_Arel_Nodes_Unknown(_o, collector) collector << 'UNKNOWN' end end class Dot alias visit_Arel_Nodes_Unknown terminal end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
10 entries across 10 versions & 1 rubygems