Skip to content

Instantly share code, notes, and snippets.

@trev
Last active August 29, 2015 14:24
Show Gist options
  • Save trev/59fa411982dba2dbf829 to your computer and use it in GitHub Desktop.
Save trev/59fa411982dba2dbf829 to your computer and use it in GitHub Desktop.
Starting a new Rails application on Mac OSX 10.10 using chruby + POW
source /usr/local/share/chruby/chruby.sh
chruby $(cat .ruby-version)
  • Generate the rails app skeleton: $ rails new my_billion_dollar_app
  • Link it up to pow: $ ln -s ~/Sites/my_billion_dollar_app ~/.pow/.
  • Fetch dependencies: $ bundle
  • Fire it up: http://my_billion_dollar_app.dev
  • Go pitch to a16z and buy a yacht
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment