Created
July 28, 2012 16:41
-
-
Save seadowg/3193955 to your computer and use it in GitHub Desktop.
My Rails Setup
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
rails new <appname> | |
cd <appname> | |
git init | |
rm -r test | |
gem 'rspec-rails' -> Gemfile | |
bundle install | |
rails generate rspec:install | |
gem 'factory_girl_rails' -> Gemfile | |
bundle install | |
config.include FactoryGirl::Syntax::Methods -> spec_helper.rb | |
gem 'pg' -> Gemfile | |
bundle install | |
rm index.html | |
gem 'heroku' -> Gemfile | |
bundle install | |
heroku create <appname> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment