Module: AuxiliaryRails::Concerns::Callable
- Included in:
- Application::Query, Performable
- Defined in:
- lib/auxiliary_rails/concerns/callable.rb
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
- #call ⇒ Object abstract
Class Method Details
.included(klass) ⇒ Object
4 5 6 |
# File 'lib/auxiliary_rails/concerns/callable.rb', line 4 def self.included(klass) klass.extend(ClassMethods) end |
Instance Method Details
#call ⇒ Object
This method is abstract.
18 19 20 |
# File 'lib/auxiliary_rails/concerns/callable.rb', line 18 def call raise NotImplementedError end |