module ROM::Plugins

Registry of all known plugin types (command, relation, mapper, etc)

@api private

Public Class Methods

register(entity_type, plugin_type: Plugin, adapter: true) click to toggle source

@api private

Calls superclass method
# File lib/rom/plugins.rb, line 15
def register(entity_type, plugin_type: Plugin, adapter: true)
  super(entity_type, plugin_type: plugin_type, adapter: adapter)
end