Sha256: a2080c2945d95971ec493d47b4d8f3040670d8b33133766287e631df5653f7d3
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
require 'celluloid/current' require 'yaml' require_relative 'utils/pmap' require_relative 'utils/mini_active_support' # Extend all objects with logger Object.send(:include, Eye::Logger::ObjectExt) # needs to preload Eye::Sigar Eye::SystemResources class Eye::Controller include Celluloid autoload :Load, 'eye/controller/load' autoload :Helpers, 'eye/controller/helpers' autoload :Commands, 'eye/controller/commands' autoload :Status, 'eye/controller/status' autoload :SendCommand, 'eye/controller/send_command' autoload :Options, 'eye/controller/options' include Eye::Controller::Load include Eye::Controller::Helpers include Eye::Controller::Commands include Eye::Controller::Status include Eye::Controller::SendCommand include Eye::Controller::Options attr_reader :applications, :current_config def initialize @applications = [] @current_config = Eye::Config.new Celluloid.logger = Eye::Logger.new('celluloid') info "starting #{Eye::ABOUT} <#{$$}>" end def settings current_config.settings end def logger_tag 'Eye' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eye-0.8.1 | lib/eye/controller.rb |
eye-0.8 | lib/eye/controller.rb |