Skip to content

rails 3 0 8 example gemfile

Daniel Kehoe edited this page Jan 29, 2012 · 3 revisions

Example Gemfiles for Rails 3.0.8

Here are Gemfiles for the example apps in the Rails Apps repository.

For the newer Rails 3.2 release, see the Example Rails 3.2 Gemfile.

Background

For background, see Managing Rails Versions and Gems.

The example apps have been tested with this configuration:

  • Ruby 1.9.2
  • RubyGems 1.8.4
  • Rails 3.0.8
  • Rake 0.9.0
  • Bundler 1.0.13

Required Gems

The example applications use the following gems.

Two of the example apps use the Mongoid gem for access to a MongoDB datastore.

Two of the example apps use Devise for authentication.

One of the example apps uses OmniAuth for authentication.

Example Gemfiles

For the example apps built with Rails 3.0.8, I recommend using the versions of the gems specified below.

The apps have been tested with the indicated versions.

source 'http://rubygems.org'
gem 'rails', '3.0.8'
gem 'sqlite3'
gem 'rspec-rails', '2.6.1', :group => [:development, :test]
gem 'factory_girl_rails', '1.1.beta1', :group => :test
gem 'cucumber-rails', '0.5.1', :group => :test
gem 'capybara', '1.0.0.beta1', :group => :test
gem 'database_cleaner', '0.6.7', :group => :test
gem 'launchy', '0.4.0', :group => :test
gem 'devise', '1.3.4'
source 'http://rubygems.org'
gem 'rails', '3.0.8'
gem 'rspec-rails', '2.6.1', :group => [:development, :test]
gem 'factory_girl_rails', '1.1.beta1', :group => :test
gem 'cucumber-rails', '0.5.1', :group => :test
gem 'capybara', '1.0.0.beta1', :group => :test
gem 'database_cleaner', '0.6.7', :group => :test
gem 'launchy', '0.4.0', :group => :test
gem 'bson_ext', '1.3.1'
gem 'mongoid', '2.0.2'
gem 'mongoid-rspec', '1.4.2', :group => :test
gem 'devise', '1.3.4'
source 'http://rubygems.org'
gem 'rails', '3.0.8'
gem 'rspec-rails', '2.6.1', :group => [:development, :test]
gem 'factory_girl_rails', '1.1.beta1', :group => :test
gem 'cucumber-rails', '0.5.1', :group => :test
gem 'capybara', '1.0.0.beta1', :group => :test
gem 'database_cleaner', '0.6.7', :group => :test
gem 'launchy', '0.4.0', :group => :test
gem 'bson_ext', '1.3.1'
gem 'mongoid', '2.0.2'
gem 'mongoid-rspec', '1.4.2', :group => :test
gem 'omniauth', '0.2.6'
Clone this wiki locally