Sha256: c34717f5720527060a7bff6e62c3116e55d14484843770d3f30d8babb239418a
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
# TODO: Strip this out eventually so we can run without rubygems require 'rubygems' require 'eventmachine' require File.dirname(__FILE__) + '/daemon_kit/core_ext' $:.unshift( File.dirname(__FILE__).to_absolute_path ) unless $:.include?( File.dirname(__FILE__).to_absolute_path ) module DaemonKit VERSION = '0.1.7.9' autoload :Initializer, 'daemon_kit/initializer' autoload :Application, 'daemon_kit/application' autoload :Arguments, 'daemon_kit/arguments' autoload :Config, 'daemon_kit/config' autoload :Safety, 'daemon_kit/safety' autoload :PidFile, 'daemon_kit/pid_file' autoload :AbstractLogger, 'daemon_kit/abstract_logger' autoload :EM, 'daemon_kit/em' autoload :Configurable, 'daemon_kit/core_ext/configurable' autoload :Cron, 'daemon_kit/cron' autoload :Jabber, 'daemon_kit/jabber' autoload :AMQP, 'daemon_kit/amqp' autoload :Nanite, 'daemon_kit/nanite' class << self def logger @logger end def logger=( logger ) @logger = logger end def root DAEMON_ROOT end def env DAEMON_ENV end def framework_root @framework_root ||= File.join( File.dirname(__FILE__), '..' ).to_absolute_path end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
kennethkalmer-daemon-kit-0.1.7.9 | lib/daemon_kit.rb |
daemon-kit-0.1.7.9 | lib/daemon_kit.rb |