Created
August 23, 2011 19:18
-
-
Save wjlafrance/1166198 to your computer and use it in GitHub Desktop.
Rakefile additions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task :test do | |
system("autotest > log/test.log 2>&1 &") | |
end | |
task :deploy do | |
system("touch tmp/restart.txt") | |
system("rsync -r --delete * server:path") | |
end | |
task :tail_log do | |
system("tail -f log/*") | |
end | |
task :restart_passenger do | |
system("touch tmp/restart.txt") | |
puts "touched tmp/restart.txt" | |
end | |
task :restart_apache do | |
system("sudo apache2ctl graceful") | |
end | |
task :autotest do | |
system("autotest > log/test.log 2>&1 &") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment