Skip to content

Instantly share code, notes, and snippets.

@mathieulegrand
Created May 9, 2011 08:56
Show Gist options
  • Save mathieulegrand/962252 to your computer and use it in GitHub Desktop.
Save mathieulegrand/962252 to your computer and use it in GitHub Desktop.
source :rubygems
# Bundle edge Rails
gem 'rails', '3.1.0.beta1'
#gem 'arel', :git => 'git://github.com/rails/arel.git'
#gem 'rack', :git => 'git://github.com/rack/rack.git'
#gem 'sprockets', :git => 'git://github.com/sstephenson/sprockets.git'
# Rails console dependency
gem 'turn'
# Heroku deployment
gem 'therubyracer-heroku'
gem 'heroku'
gem 'dnsimple-ruby'
# Databases
gem 'sqlite3'
gem 'pg'
gem 'citier'
# Asset template engines
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'compass'
# Authentication
gem 'devise'
gem 'cancan'
# Alternate template framework
gem 'haml'
gem 'haml-rails'
# Utilities
gem 'nifty-generators'
gem 'decent_exposure'
# Testing framework
gem 'rspec-rails', :group => [:development, :test]
gem 'rb-fsevent', :group => [:development] # used for compass watch
group :test do
gem 'factory_girl_rails'
gem 'cucumber-rails'
gem 'capybara'
gem 'database_cleaner'
# Pretty printed test output
gem 'turn', :require => false
gem 'itslog'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment