Sha256: b822090cc4c831c8e024971854ad05c9cc0d2f9f2f10f489503e3a0c65582073
Contents?: true
Size: 484 Bytes
Versions: 3
Compression:
Stored size: 484 Bytes
Contents
# Global configuration for {CarrotRpc}. Access with {CarrotRpc.configuration}. class CarrotRpc::Configuration attr_accessor :logger, :logfile, :loglevel, :daemonize, :pidfile, :runloop_sleep, :autoload_rails, :bunny # logfile - set logger to a file. overrides rails logger. def initialize @logfile = nil @loglevel = Logger::DEBUG @logger = nil @daemonize = false @pidfile = nil @runloop_sleep = 0 @autoload_rails = true @bunny = nil end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
carrot_rpc-0.3.0 | lib/carrot_rpc/configuration.rb |
carrot_rpc-0.2.3 | lib/carrot_rpc/configuration.rb |
carrot_rpc-0.2.3.pre | lib/carrot_rpc/configuration.rb |