Module: CapistranoMulticonfigParallel::BaseActorHelper
- Included in:
- BundlerWorker, CelluloidManager, CelluloidWorker, ProcessRunner, TerminalTable
- Defined in:
- lib/capistrano_multiconfig_parallel/helpers/base_actor_helper.rb
Overview
base actor used for compatibility between celluloid versions
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
86 87 88 89 90 91 92 |
# File 'lib/capistrano_multiconfig_parallel/helpers/base_actor_helper.rb', line 86 def self.included(base) base.send(:include, Celluloid) base.send(:include, Celluloid::Notifications) base.send(:include, CapistranoMulticonfigParallel::ApplicationHelper) base.send(:include, CapistranoMulticonfigParallel::BaseActorHelper::ClassMethods.config['logger_class']) base.send(:include, CapistranoMulticonfigParallel::BaseActorHelper::InstanceMethods) end |