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