Created
September 7, 2011 10:50
-
-
Save shedd/1200269 to your computer and use it in GitHub Desktop.
terminitor config for BetDash
This file contains 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
# BETDASH DEVELOPMENT ENVIRONMENT | |
# tab 1: terminal in betdash project | |
# tab 2: Rails console | |
# tab 3: tail -f on development log | |
# tab 4: dev script | |
before { run 'fgb' } | |
tab "BetDash", :selected => true do | |
run "clear" | |
end | |
tab "BetDash Console" do | |
run "clear" | |
run "script/console" | |
end | |
tab "BetDash Development Log" do | |
run "cd ./log" | |
run "clear" | |
run "tail -f development.log" | |
end | |
tab "BetDash Dev-Start" do | |
run "clear" | |
run "./bin/dev-start" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment