Created
October 3, 2011 21:26
-
-
Save sstarr/1260303 to your computer and use it in GitHub Desktop.
Gemfile
This file contains hidden or 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.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