Created
November 9, 2011 16:46
-
-
Save hashrocketeer/1352037 to your computer and use it in GitHub Desktop.
This file contains hidden or 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.1' | |
platforms :jruby do | |
gem 'jruby-openssl' | |
gem 'trinidad' | |
gem 'activerecord-jdbcpostgresql-adapter' | |
gem 'activerecord-jdbc-adapter' | |
gem 'jdbc-postgres', :require => false | |
end | |
gem 'bcrypt-ruby', '~> 3.0.0' | |
gem 'engineyard' | |
gem 'fabrication' | |
gem 'haml-rails' | |
gem 'jquery-rails' | |
gem 'ruby-debug' | |
group :assets do | |
gem 'coffee-rails', '~> 3.1.1' | |
gem 'sass-rails', '~> 3.1.4' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
group :cucumber, :test do | |
gem 'capybara', '>= 0.4.1.1' | |
gem 'cucumber-rails', '>= 0.3.2' | |
gem 'database_cleaner', '>= 0.6.5' | |
gem 'launchy', '>= 0.4.0' | |
gem 'rspec-rails', '>= 2.5.0' | |
gem 'spork', '>= 0.8.4' | |
end | |
group :development do | |
gem 'pickler' | |
gem 'rspec-rails', '>= 2.5.0' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment