Skip to content

Instantly share code, notes, and snippets.

@AdrienGiboire
Created November 29, 2012 11:23
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 AdrienGiboire/4168353 to your computer and use it in GitHub Desktop.
Save AdrienGiboire/4168353 to your computer and use it in GitHub Desktop.
GemfileWithGroups
source 'http://rubygems.org'
gem 'rake', "~> 0.9.2.2"
# Javascript engine
group :development do
gem 'heroku'
gem 'sauce'
end
# Asset template engines
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "sass", "~> 3.2.1"
gem 'sass-rails', "~> 3.2.3"
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier'
gem 'closure-compiler'
gem 'bootstrap-sass', '~> 2.1.0.0'
gem 'rails', '3.2.8'
end
group :rails do
gem 'activerecord-postgres-hstore'
gem 'squeel'
gem 'jquery-rails'
gem 'airbrake'
gem 'dynamic_form' # Used for the registration form. See: https://github.com/joelmoss/dynamic_form
gem 'haml'
gem 'devise'
gem 'ace-rails-ap', :git => 'git://github.com/AdrienGiboire/ace-rails-ap.git'
gem 'acts_as_sane_tree', :git => 'git://github.com/laurent-descrivan/acts_as_sane_tree.git'
gem 'json-schema'
gem 'google_storage'
gem 'multipart-post'
end
group :frontoffice do
gem "term-ansicolor"
gem "sprockets"
gem 'closure-compiler'
gem 'therubyracer'
gem "sass", "~> 3.2.1"
gem "coffee-script", "~> 2.2.0"
gem "webgen"
gem "aws-s3"
gem "google_storage"
end
group :production do
gem 'unicorn'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment