Sha256: d095800610bf1e96d641e9ec32fc3c31685e6cd079e8bdb24ab9537ea1ff479e
Contents?: true
Size: 352 Bytes
Versions: 32
Compression:
Stored size: 352 Bytes
Contents
require 'rom/sql/dsl' module ROM module SQL # @api private class OrderDSL < DSL private # @api private def method_missing(meth, *args, &block) if schema.key?(meth) schema[meth] else ::Sequel::VIRTUAL_ROW.__send__(meth.to_s.upcase, *args, &block) end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems