added ability to start and stop from rake tasks

This commit is contained in:
cktricky
2013-08-08 15:30:26 -04:00
parent 659ff82b77
commit dafff5e60e
+18
View File
@@ -0,0 +1,18 @@
namespace :server do
desc "Start Rails"
task :start do
sh("rails s -d")
end
desc "Stop Rails"
task :stop do
pid_file = "tmp/pids/server.pid"
if File.exists?(pid_file)
Process.kill("INT", File.read(pid_file).to_i)
else
puts "[-] Server isn't running"
end
end
end