Skip to content

Instantly share code, notes, and snippets.

@sfate
Forked from indirect/steps.sh
Created July 11, 2012 15:10
Show Gist options
  • Save sfate/3091029 to your computer and use it in GitHub Desktop.
Save sfate/3091029 to your computer and use it in GitHub Desktop.
creating an edge rails3 app with RVM
rvm use @global
gem i bundler
mkdir my_app && cd my_app
rvm --create --rvmrc @my_app
bundle init
echo "gem 'rails', :github => 'rails/rails'" >> Gemfile
bundle
bundle exec rails new .
bundle exec rails server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment