Skip to content

Instantly share code, notes, and snippets.

@diegorv
Created August 18, 2010 19:19
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 diegorv/535853 to your computer and use it in GitHub Desktop.
Save diegorv/535853 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0.rc'
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# ----------------------------------------------------------------------- #
# Default
gem 'inherited_resources', '1.1.2'
gem 'will_paginate', "~> 3.0.pre2"
gem 'mysql2'
gem 'cancan'
gem 'devise', '1.1.rc2'
# ----------------------------------------------------------------------- #
# Only Production
group :production do
gem 'unicorn'
end
# ----------------------------------------------------------------------- #
# Only Dev
group :development, :test do
gem 'webrat'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'factory_girl_rails'
gem 'rspec-rails', ">= 2.0.0.beta.19"
gem 'remarkable_activerecord'
gem 'spork'
gem 'launchy'
# gem 'ruby-debug'
end
# ----------------------------------------------------------------------- #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment