Sha256: 9d1eb30d02c608bc0d0d9d6c3225ed188ac559ba1816e7814aa2287559cde5c8

Contents?: true

Size: 998 Bytes

Versions: 12

Compression:

Stored size: 998 Bytes

Contents

# Skynet Configuration File.  Should be in APP_ROOT/config/skynet_config.rb  
# Start skynet from within your app root with 
# $ skynet start

require 'rubygems'
require 'skynet'         

Skynet::CONFIG[:SKYNET_LOG_LEVEL] = Logger::ERROR
Skynet::CONFIG[:SKYNET_LOG_DIR]   = File.expand_path(File.dirname(__FILE__) + "/../log") 
Skynet::CONFIG[:SKYNET_PID_DIR]   = File.expand_path(File.dirname(__FILE__) + "/../log") 

# ==================================================================
# = Require any other libraries you want skynet to know about here =
# ==================================================================

# require all ruby files in lib/
Dir["#{File.dirname(__FILE__)}" + "/../lib/**/*.rb"].each do |file|
  require file
end

# ===========================================
# = Set your own configuration options here =
# ===========================================
# You can also configure skynet with
# Skynet.configure(:SOME_CONFIG_OPTION => true, :SOME_OTHER_CONFIG => 3)

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
brendan-skynet-0.9.3.1 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.2 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.3 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.5 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.6 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.7 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.3.8 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.31 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.32 examples/dgrep/config/skynet_config.rb
brendan-skynet-0.9.33 examples/dgrep/config/skynet_config.rb
timocratic-skynet-0.9.4 examples/dgrep/config/skynet_config.rb
skynet-0.9.3 examples/dgrep/config/skynet_config.rb