Skip to content

Instantly share code, notes, and snippets.

@rurounijones
Created June 29, 2011 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rurounijones/1052559 to your computer and use it in GitHub Desktop.
Save rurounijones/1052559 to your computer and use it in GitHub Desktop.
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