Skip to content

Instantly share code, notes, and snippets.

@markauskas
Forked from mchung/Gemfile-rails-2.3.8.rb
Created June 16, 2010 12:40
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 markauskas/440612 to your computer and use it in GitHub Desktop.
Save markauskas/440612 to your computer and use it in GitHub Desktop.
# Everything you need to do to get started with Rails 2.3.8
#
# As of June 14th, 2010 @ 2:30 p.m. MST
#
# This gist now features instructions to get Rails 3 up and running with:
# - Ruby 1.8.7-p174
# - Bundler 0.9.26
# - Cucumber 0.8.0
# - Rspec 1.3.0 + Rspec-Rails 1.3.2
# - RVM
# - pg-0.9.0
# - Heroku support!
#
# 1. Install Ruby 1.8.7
# $ rvm install 1.8.7-p174
# $ rvm gemset create rails2
# $ rvm use 1.8.7-p174@rails2
#
# 2. Ensure no gems exist. Rake and rdoc are okay.
#
# Note: If you have no gems, you've run into an env bug.
# Open a new terminal, `rvm use 1.8.7-p174@rails2` and continue.
#
# $ gem list # rake, rdoc are okay.
#
# 3. Ensure rubygems-1.3.7
# $ gem -v
#
# 4. Install bundler 0.9.25
# $ gem install bundler -v=0.9.25
#
# 5. Install rails-2.3.8
# $ gem install rails
#
# 6. Setup a Rails app
# $ rails rails238
# $ cd rails238
#
# 7. Setup the Rails app with Bundler
# a. Follow the instructions at http://gembundler.com/rails23.html
# b. Replace the default Gemfile with this one
# c. Run:
# $ bundle install
# $ Update config/database.yml with the following:
#
# 8. Setup the database
# development:
# adapter: postgresql
# encoding: utf8
# database: rails238gist_development
# username: postgres
# password:
# host: localhost
#
# # Warning: The database defined as "test" will be erased and
# # re-generated from your development database when you run "rake".
# # Do not set this db to the same as development or production.
# test: &TEST
# adapter: postgresql
# encoding: utf8
# database: rails238gist_test
# username: postgres
# password:
# host: localhost
#
# 9. Setup RSpec and Cucumber!
# $ ./script/generate rspec
# $ ./script/generate cucumber --rspec --capybara
#
# 10. Generating a Cucumber feature
# $ ./script/generate cucumber:feature post title:string body:text published:boolean
# $ ./script/generate scaffold post title:string body:text published:boolean
#
# 11. Setup and test your new models
# $ rake db:create
# $ rake db:migrate
# $ rake spec # specs
# $ rake cucumber # features
#
# Note: *All* your tests should be passing
# rspec generates specs which cause errors
#
# 12. Pushing to heroku
# $ gem install heroku
# $ heroku create rails238gist --stack bamboo-ree-1.8.7
# $ git push heroku master
# $ heroku rake db:migrate
#
# 13. Visit rails238gist.heroku.com
source "http://rubygems.org"
gem "rails", "2.3.8"
gem "pg", "0.9.0"
gem "capistrano"
gem "heroku"
gem "rack", "1.1.0"
gem "clearance"
gem "fastercsv"
group :test do
gem "rspec", "1.3.0"
gem "rspec-rails", "1.3.2"
gem "faker"
gem "database_cleaner", :git => "git://github.com/bmabey/database_cleaner.git"
gem "capybara", :git => "git://github.com/jnicklas/capybara.git"
gem "cucumber"
gem "cucumber-rails"
gem "factory_girl"
gem "formtastic"
gem "email_spec"
end
# Everything you need to do to get started with Rails 3
#
# As of June 15th, 2010 @ 4:40 p.m. MST
#
# This gist now features instructions to get Rails 3 up and running with:
# - Ruby 1.8.7-p174
# - Bundler 0.9.26
# - Cucumber 0.8.0
# - Rspec + Rspec-Rails 2.0.0.beta.12
# - RVM
# - pg-0.9.0
# - Heroku support!
#
# 1. Install Ruby 1.8.7
# $ rvm install 1.8.7-p174
# $ rvm gemset create rails3
# $ rvm use 1.8.7-p174@rails3
#
# 2. Ensure no gems exist. Rake and rdoc are okay.
#
# Note: If you have no gems, you've run into an env bug.
# Open a new terminal, `rvm use 1.8.7-p174@rails3` and continue.
#
# $ gem list # rake, rdoc are okay.
#
# 3. Ensure rubygems-1.3.7
# $ gem -v
#
# 4. Install bundler-0.9.26
# $ gem install bundler
#
# 5. Install rails3.0.0-beta4
# $ gem install rails --pre
#
# 6. Setup a Rails app
# $ rails new rails3gist
# $ cd rails3gist
#
# 7. Setup the Rails app with Bundler and this Gemfile
# a. Replace the default Gemfile with this one
# b. Run:
# $ bundle install
# $ Update config/database.yml with the following:
#
# 8. Setup the database
# development:
# adapter: postgresql
# encoding: utf8
# database: rails3gist_development
# username: postgres
# password:
# host: localhost
#
# # Warning: The database defined as "test" will be erased and
# # re-generated from your development database when you run "rake".
# # Do not set this db to the same as development or production.
# test: &TEST
# adapter: postgresql
# encoding: utf8
# database: rails3gist_test
# username: postgres
# password:
# host: localhost
#
# 9. Setup RSpec and Cucumber!
# $ ./script/rails g rspec:install
# $ ./script/rails g cucumber:install --rspec --capybara
#
# 10. Generating a Cucumber feature
# $ ./script/rails generate cucumber:feature post title:string body:text published:boolean
# $ ./script/rails generate scaffold post title:string body:text published:boolean
#
# 11. Setup and test your new models
# $ rake db:create
# $ rake db:migrate
# $ rake spec # specs
# $ rake cucumber # features
#
# Note: *All* your tests should be passing
# rspec generates specs which cause errors
#
# 12. Pushing to Heroku
# $ gem install heroku
# $ heroku create rails3gist --stack bamboo-ree-1.8.7
# $ git push heroku master
# $ heroku create db:migrate
#
# 13. Visit rails3gist.heroku.com
#
# TODO:
# Resolve "`utc_offset": undefined method `current_period"" error when running 1.9.2-preview1
source "http://rubygems.org"
gem "rails", "3.0.0.beta4"
gem "pg", "0.9.0"
gem "capistrano"
gem "heroku"
gem "rack", "1.1.0"
gem "clearance"
gem "fastercsv"
# gem 'unicorn'
group :test do
gem "rspec"
gem "rspec-rails", ">= 2.0.0.beta.12"
gem "faker"
gem "database_cleaner", :git => "git://github.com/bmabey/database_cleaner.git"
gem "capybara", :git => "git://github.com/jnicklas/capybara.git"
gem "cucumber"
# gem "cucumber", :git => "git://github.com/aslakhellesoy/cucumber.git"
gem "cucumber-rails", :git => "git://github.com/aslakhellesoy/cucumber-rails.git"
# gem 'ruby-debug'
gem "factory_girl", "1.3.0"
gem "factory_girl_rails", "1.0"
# TODO: test and evaluate
# gem "formtastic", :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
# gem "email_spec", :git => "git://github.com/bmabey/email-spec.git", :branch => "rails3"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment