god.rake revision 9fadd0fcf5941734ebb5fbe78c74e90e3124a626
namespace :god do
desc 'Start god'
task :start do
system 'cd ~/current && RAILS_ENV=production bundle exec god -c ~/current/config/god/app.god'
end
desc 'Stop god'
task :stop do
system 'cd ~/current && RAILS_ENV=production bundle exec god terminate'
end
desc 'Restart god'
task :restart => [:stop, :start] do
end
end