Skip to content

Instantly share code, notes, and snippets.

@sstarr
Created October 3, 2011 21:26
Show Gist options
  • Save sstarr/1260303 to your computer and use it in GitHub Desktop.
Save sstarr/1260303 to your computer and use it in GitHub Desktop.
Gemfile
source 'http://rubygems.org'
gem 'rails', '3.0.10'
# Authentication and authorisation
gem 'devise'
gem 'cancan'
# Attachments
gem 'carrierwave'
gem 'rmagick'
gem 'fog'
# Easily handle multiple nested models in forms
gem 'nested_form'
# Unobtrusive jQuery support
gem 'jquery-rails'
# App monitoring
gem 'airbrake'
group :development, :test do
# Database
gem 'sqlite3'
# Testing
gem 'rspec-rails'
end
group :development do
# ryanb's HTML templates
gem 'nifty-generators'
# Console formatting
gem 'wirble'
gem 'awesome_print'
end
group :test do
# Testing
gem 'cucumber-rails'
gem 'capybara'
gem 'factory_girl_rails'
gem 'launchy'
gem 'database_cleaner'
gem 'mocha'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment