class Eye::Controller

Attributes

applications[R]
current_config[R]

Public Class Methods

new() click to toggle source
# File lib/eye/controller.rb, line 34
def initialize
  @applications = []
  @current_config = Eye::Config.new

  Celluloid.logger = Eye::Logger.new('celluloid')

  info "starting #{Eye::ABOUT} <#{$$}>"
end

Public Instance Methods

logger_tag() click to toggle source
# File lib/eye/controller.rb, line 47
def logger_tag
  'Eye'
end
settings() click to toggle source
# File lib/eye/controller.rb, line 43
def settings
  current_config.settings
end