Created
November 15, 2013 17:32
-
-
Save kylekeesling/7488303 to your computer and use it in GitHub Desktop.
An oh-my-zsh plugin that creates a terminal command to quickly get your rails project updated and ready to code. Assumes you're using Rails, git and Sublime Text. Also assumes your apps are stored in '~/sites', should be able to tweak this a little if your environment is a little different. Is really great if you use multiple machines for develo…
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
start_working() { cd ~/sites/$1; git pull; bundle install; rake db:migrate; subl .; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment