Module: ROM::Plugins::Relation::SQL::AutoWrap

Defined in:
lib/rom/plugins/relation/sql/auto_wrap.rb

Defined Under Namespace

Modules: ClassInterface, InstanceInterface

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



7
8
9
10
11
12
13
# File 'lib/rom/plugins/relation/sql/auto_wrap.rb', line 7

def self.included(klass)
  super
  klass.class_eval do
    include(InstanceInterface)
    extend(ClassInterface)
  end
end