Created
June 29, 2011 00:14
-
-
Save rurounijones/1052559 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.rc1' | |
# General Purpose gems | |
gem 'dragonfly', '~>0.9.2' | |
gem 'rack-cache', :require => 'rack/cache' | |
gem 'nokogiri', '~>1.5.0.beta.4' | |
# Torquebox related gems | |
gem 'torquebox-rake-support' | |
gem 'torquebox-messaging' | |
# MongoDB related gems | |
gem 'mongoid', '~> 2.0', :git => 'https://github.com/rurounijones/mongoid.git' | |
gem 'mongoid_session_store' | |
# Asset template engines | |
gem 'json' | |
gem 'sass' | |
gem 'haml-rails' | |
# Monitoring / Error management gems | |
gem 'rpm_contrib' | |
gem 'newrelic_rpm' | |
# Javascript Related gems | |
gem 'uglifier' | |
gem 'jquery-rails' | |
# Deploy with Capistrano | |
#gem 'capistrano' | |
# Testing & Documentation gems | |
group :development do | |
gem 'yard' | |
end | |
group :test, :development do | |
gem 'rspec-rails', '~> 2.6' | |
gem 'rcov', '~> 0.9' | |
gem 'cucumber-rails' | |
gem 'database_cleaner' | |
gem 'factory_girl_rails' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment