Created
June 22, 2011 21:33
-
-
Save andrewpthorp/1041275 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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