Sha256: 32f06c5a59e7c91084ce65c89df0875b6c5a27963188296053478935148e62b1
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
# TODO: Strip this out eventually so we can run without rubygems require 'rubygems' # Seems in 1.9 we need to load openssl before em or there is failures all around. # But we need to consider that people might not have ssl in the first place. if RUBY_VERSION >= "1.9" begin require 'openssl' rescue LoadError end end require 'eventmachine' require File.dirname(__FILE__) + '/daemon_kit/core_ext' require File.dirname(__FILE__) + '/daemon_kit/exceptions' $:.unshift( File.dirname(__FILE__).to_absolute_path ) unless $:.include?( File.dirname(__FILE__).to_absolute_path ) module DaemonKit VERSION = '0.1.7.11' 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' autoload :RuoteParticipants, 'daemon_kit/ruote_participants' autoload :RuoteWorkitem, 'daemon_kit/ruote_workitem' autoload :RuotePseudoParticipant, 'daemon_kit/ruote_pseudo_participant' 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
daemon-kit-0.1.7.11 | lib/daemon_kit.rb |