Sha256: 7f84eecb06e0e5d44f4dab0eab893570046dff31795bc39c346d13295542810b
Contents?: true
Size: 822 Bytes
Versions: 4
Compression:
Stored size: 822 Bytes
Contents
namespace :ruby_skynet do desc "Start the Ruby Skynet Server.\n Rails Example: rake ruby_skynet:server\n Without Rails: SKYNET_ENV=production SKYNET_CONFIG=config/ruby_skynet rake ruby_skynet:server" task :server => :environment do # Configuration is automatically loaded when running under Rails # so skip it here under Rails unless defined?(Rails) # Environment to use in config file environment = ENV['SKYNET_ENV'] # Environment to use in config file cfg_file = ENV['SKYNET_CONFIG'] # Load the configuration file RubySkynet.configure!(cfg_file, environment) end # Connect to doozer RubySkynet.services RubySkynet::Server.load_services # Start the server RubySkynet::Server.start RubySkynet::Server.wait_until_server_stops end end
Version data entries
4 entries across 4 versions & 1 rubygems