Skip to content

Instantly share code, notes, and snippets.

@seadowg
Created July 28, 2012 16:41
Show Gist options
  • Save seadowg/3193955 to your computer and use it in GitHub Desktop.
Save seadowg/3193955 to your computer and use it in GitHub Desktop.
My Rails Setup
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