Skip to content

Instantly share code, notes, and snippets.

@andrewpthorp
Created June 22, 2011 21:33
Show Gist options
  • Save andrewpthorp/1041275 to your computer and use it in GitHub Desktop.
Save andrewpthorp/1041275 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.0.rc4'
gem 'mysql2'
gem "clearance", :git => "git://github.com/thoughtbot/clearance.git"
gem 'cancan'
gem 'heroku'
gem 'paperclip', '~> 2.3'
gem 'aws-s3', :require => 'aws/s3'
gem 'formtastic'
gem 'high_voltage'
gem 'sass'
group :development do
gem 'annotate-models', '1.0.4'
gem 'faker', '0.3.1'
gem 'taps'
end
group :development, :test, :cucumber do
gem 'cucumber-rails', "~> 0.5.0"
gem 'rspec-rails', '~> 2.6.1'
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
gem 'guard-rspec'
gem 'guard-bundler'
gem 'growl'
gem 'fakeweb'
gem 'shoulda', :git => 'git://github.com/thoughtbot/shoulda.git'
gem 'webrat', '0.7.1'
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