Sha256: bb0b4bb9af4df01969bba0df90b2e66ef541da2b790af09a9508b5288118785a
Contents?: true
Size: 407 Bytes
Versions: 2
Compression:
Stored size: 407 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 end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arel_toolkit-0.3.0 | lib/arel/extensions/unknown.rb |
arel_toolkit-0.2.0 | lib/arel/extensions/unknown.rb |