Module: ROM::Plugins::Relation::SQL::AutoCombine Private

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

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

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.



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

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