Skip to content

Instantly share code, notes, and snippets.

@stevef
Created December 14, 2011 18:06
Show Gist options
  • Save stevef/1477737 to your computer and use it in GitHub Desktop.
Save stevef/1477737 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.3'
gem 'warbler', '1.3.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
platforms :ruby do
# gem 'sqlite3'
gem 'mysql2', '~> 0.2.6'
end
platforms :jruby do
gem 'activerecord-jdbc-adapter'
gem 'jdbc-mysql', :require=>false
gem 'activerecord-jdbcmysql-adapter'
gem 'jruby-openssl'
end
gem 'ffi-ncurses'
gem 'highline', '~> 1.6.2'
gem 'capistrano'
gem 'aws-s3', :require => 'aws/s3'
# authentication
gem 'devise'
gem 'oauth'
#gem 'omniauth'
#gem 'oa-oauth', :require => 'omniauth/oauth'
# authorization
gem 'cancan'
gem 'rest-client', '~> 1.6.3'
gem 'json'
gem 'mongoid', '~> 2.3.4'
gem 'bson_ext', '~> 1.3'
#gem 'redis'
gem 'redis-objects'
gem 'exception_notification'
gem 'rpm_contrib', :path => 'vendor/plugins/rpm_contrib'
gem 'newrelic_rpm'
gem 'twitter'
group :test do
#gem 'mocha'
gem 'timecop'
gem 'mongo_mapper'
gem 'factory_girl_rails'
gem 'redgreen'
gem 'vcr'
gem 'webmock'
gem 'autotest'
gem 'autotest-rails'
# gem 'autotest-fsevent'
# gem 'autotest-growl'
end
group :development, :test do
gem 'awesome_print'
gem 'ci_reporter'
gem 'rcov'
gem 'flog'
gem 'faker'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment