lib/controll/executor.rb in controll-0.2.0 vs lib/controll/executor.rb in controll-0.3.0
- old
+ new
@@ -1,6 +1,13 @@
module Controll
module Executor
autoload :Base, 'controll/executor/base'
- autoload :Notificator, 'controll/executor/notificator'
+ autoload :Controlled, 'controll/executor/controlled'
+ autoload :Delegator, 'controll/executor/delegator'
end
+end
+
+module Executors
+ Base = Controll::Executor::Base
+ Delegator = Controll::Executor::Delegator
+ Controlled = Controll::Executor::Controlled
end
\ No newline at end of file