Module: Consumer::PositionStore

Included in:
Controls::PositionStore::Example, Controls::PositionStore::LocalFile
Defined in:
lib/consumer/position_store.rb,
lib/consumer/position_store/telemetry.rb,
lib/consumer/position_store/substitute.rb

Defined Under Namespace

Modules: Build, ClassConfigure, Configure, Get, Put, Substitute, Telemetry

Class Method Summary collapse

Class Method Details

.included(cls) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/consumer/position_store.rb', line 3

def self.included(cls)
  cls.class_exec do
    include Log::Dependency

    extend Build
    extend ClassConfigure

    prepend Configure
    prepend Get
    prepend Put

    dependency :telemetry, ::Telemetry
  end
end