Skip to content

Instantly share code, notes, and snippets.

@kylekeesling
Created November 15, 2013 17:32
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 kylekeesling/7488303 to your computer and use it in GitHub Desktop.
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…
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