Module: ActiveInteractor::Configurable Private

Included in:
Config, Interactor::Perform::Options
Defined in:
lib/active_interactor/configurable.rb

Overview

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.

Configurable object methods. Because Configurable is a module classes should include Configurable rather than inherit from it.

Author:

Since:

  • 1.0.0

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ 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.

Since:

  • 1.0.0



11
12
13
14
15
# File 'lib/active_interactor/configurable.rb', line 11

def self.included(base)
  base.class_eval do
    extend ClassMethods
  end
end