Module: Hanami::Interactor
- Defined in:
- lib/hanami/interactor.rb
Defined Under Namespace
Modules: Interface, LegacyInterface Classes: Result
Class Method Summary collapse
-
.included(base) ⇒ Object
private
Override for
Module#included
.
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
.
147 148 149 150 151 152 153 |
# File 'lib/hanami/interactor.rb', line 147 def self.included(base) super base.class_eval do extend ClassMethods end end |