class ROM::SchemaPlugin

@api private

Public Instance Methods

extend_dsl(dsl) click to toggle source

Extends a DSL instance with a module provided by the plugin

@param [ROM::Schema::DSL] dsl

@api private

# File lib/rom/schema_plugin.rb, line 13
def extend_dsl(dsl)
  dsl.extend(mod.const_get(:DSL)) if mod.const_defined?(:DSL)
end