Module: Lotus::Interactor

Defined in:
lib/lotus/interactor.rb

Overview

Lotus Interactor

Since:

  • 0.3.5

Defined Under Namespace

Modules: Interface Classes: Result

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.

Override for Module#included.

Since:

  • 0.3.5



130
131
132
133
134
135
136
137
# File 'lib/lotus/interactor.rb', line 130

def self.included(base)
  super

  base.class_eval do
    prepend Interface
    extend  ClassMethods
  end
end