Module: Ntswf

Defined in:
lib/ntswf.rb,
lib/ntswf/base.rb,
lib/ntswf/utils.rb,
lib/ntswf/client.rb,
lib/ntswf/worker.rb,
lib/ntswf/activity_worker.rb,
lib/ntswf/decision_worker.rb

Defined Under Namespace

Modules: ActivityWorker, Base, Client, DecisionWorker, Utils, Worker

Constant Summary collapse

AUTOLOAD =
%w(
  ActivityWorker
  Client
  DecisionWorker
  Utils
)

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



11
12
13
14
15
# File 'lib/ntswf.rb', line 11

def self.included(base)
  base.module_exec do
    AUTOLOAD.each { |c| include const_get c }
  end
end