Module: Fleck::Core::Consumer::Actions

Included in:
Fleck::Core::Consumer
Defined in:
lib/fleck/core/consumer/actions.rb

Overview

‘Fleck::Core::Consumer::Actions` module implements the logic for consumer actions registration, so that this information could be used when a request is received. This mechanism will allow to process the request with the appropriate consumer method.

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



10
11
12
13
# File 'lib/fleck/core/consumer/actions.rb', line 10

def self.included(base)
  base.extend ClassMethods
  base.send :include, InstanceMethods
end