Created
November 22, 2010 10:50
-
-
Save volkanunsal/709804 to your computer and use it in GitHub Desktop.
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
# Workflow for MusicSite. | |
window do | |
tab :settings => "Homebrew" do | |
run "bundle" | |
run "rails server" | |
run "open http://localhost:3000" | |
end | |
tab :settings => "Homebrew" do | |
run "compass watch" | |
end | |
tab :settings => "Homebrew" do | |
run "spork" | |
end | |
tab :settings => "Homebrew" do | |
run "autotest" | |
end | |
tab :settings => "Homebrew" do | |
run "rails console" | |
end | |
tab :settings => "Homebrew" do | |
run "irb" | |
end | |
tab :settings => "Homebrew", :selected=>true do | |
run "mate ." | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment