Skip to content

Instantly share code, notes, and snippets.

@andrewhl
Created February 28, 2012 18:38
Show Gist options
  • Save andrewhl/1934205 to your computer and use it in GitHub Desktop.
Save andrewhl/1934205 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
gem 'rails', '3.2.1'
gem 'bcrypt-ruby', :require => 'bcrypt'
group :development, :test do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.8.1'
gem 'guard-rspec', '0.5.5'
gem "growl", "~> 1.0.3"
gem 'annotate', '~> 2.4.1.beta'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '3.2.3'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'
end
gem 'jquery-rails', '2.0.0'
group :test do
gem 'capybara', '1.1.2'
gem 'guard-spork', '0.3.2'
gem 'spork', '0.9.0.rc9'
gem 'factory_girl_rails', '1.7.0'
end
group :production do
gem 'pg', '0.12.2'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment