Skip to content

Instantly share code, notes, and snippets.

@hmans
Created September 20, 2012 15:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmans/3756435 to your computer and use it in GitHub Desktop.
Save hmans/3756435 to your computer and use it in GitHub Desktop.
My Gemfile

My favorite Rails gems. Yay!

source 'https://rubygems.org'
# Bundler 1.2.0 allows for specifying the required Ruby version in the Gemfile,
# so let's do that here.
ruby '1.9.3'
# Rails, obviously.
gem 'rails', '3.2.8'
# I love HAML.
gem 'haml-rails'
gem 'compass-rails'
gem 'simple_form'
gem 'inherited_resources'
gem 'jquery-rails'
gem "mongoid", "~> 3.0.0"
gem 'omniauth'
gem 'omniauth-browserid'
gem 'quiet_assets', :group => :development
gem 'thin'
gem 'cancan'
gem 'redcarpet'
gem 'gravatarify'
gem 'uuid'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'ffaker'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment