Skip to content

Instantly share code, notes, and snippets.

@Florent2
Created July 31, 2012 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Florent2/3218737 to your computer and use it in GitHub Desktop.
Save Florent2/3218737 to your computer and use it in GitHub Desktop.
before { run "cd ~/code/rails_blank_app" }
run "echo -e \"\\033];rails_blank_app\\007\""
run "git st"
tab :name => "vim" do
run "echo -e \"\\033];vim\\007\""
run "vim ."
end
tab :name => "server" do
run "echo -e \"\\033];server\\007\""
run "be rails s"
end
tab :name => "console" do
run "echo -e \"\\033];console\\007\""
run "be rails c"
end
tab :name => "guard" do
run "echo -e \"\\033];guard\\007\""
run "be guard start"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment