Created
November 29, 2012 11:23
-
-
Save AdrienGiboire/4168353 to your computer and use it in GitHub Desktop.
GemfileWithGroups
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 '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