Skip to content

Instantly share code, notes, and snippets.

@perfectionist
Created September 13, 2011 22:17
Show Gist options
  • Save perfectionist/1215330 to your computer and use it in GitHub Desktop.
Save perfectionist/1215330 to your computer and use it in GitHub Desktop.
Gemfile for Hartl's Rails Tutorial converted to Rails 3.1
source 'http://rubygems.org'
gem 'rails', '3.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3', "~> 1.3.4"
gem 'gravatar_image_tag', '1.0.0'
gem 'will_paginate', '3.0.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :development do
gem 'rspec-rails', '2.6.1'
gem 'annotate', '2.4.0'
gem 'rack-test', '0.6.1'
gem 'faker', '0.9.5'
end
group :test do
gem 'rspec-rails', '2.6.1'
gem 'webrat', '0.7.1'
gem 'spork', '0.9.0.rc8'
gem 'factory_girl_rails', '1.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment