Skip to content

Instantly share code, notes, and snippets.

@anlek
Created June 17, 2010 03:26
Show Gist options
  • Save anlek/441644 to your computer and use it in GitHub Desktop.
Save anlek/441644 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0.beta4'
#Database stuff
gem 'mongoid', :git => 'git://github.com/durran/mongoid.git'
gem 'bson_ext'
gem 'carrierwave', :git => "git://github.com/jnicklas/carrierwave.git"
gem 'mini_magick', :git => 'git://github.com/probablycorey/mini_magick.git'
gem 'subdomain-fu', '1.0.0.beta2'
#AUTH and PERMISSIONS
gem 'devise', '1.1.rc1'
gem 'cancan'
#UI
gem 'compass'
gem 'fancy-buttons'
gem 'will_paginate'
gem 'inherited_resources', '1.1.2'
#DEPLOYMENT
gem 'capistrano'
#Metrics
gem 'newrelic_rpm'
#Debugger
#gem "ruby-debug", :group => [:development, :test] #Doesn't work in ruby 1.9.x yet
group :development do
gem "rails3-generators"
end
group :test do
gem 'rspec', '2.0.0.beta.12'
gem 'rspec-rails', '2.0.0.beta.12'
gem 'factory_girl_rails'
end
group :cucumber do
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec-rails'
gem 'spork'
gem 'launchy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment