Created
September 26, 2014 09:35
-
-
Save schaary/05f31cbc6900558af208 to your computer and use it in GitHub Desktop.
Basic Gemfile at the Beginning of a Project
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 'https://rubygems.org' | |
gem 'dotenv-rails' | |
gem 'rails', '4.1.6' | |
gem 'pg' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.0.0' | |
# gem 'therubyracer', platforms: :ruby | |
gem 'jquery-rails' | |
gem 'turbolinks' | |
gem 'jbuilder', '~> 2.0' | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
gem 'bootstrap-sass', '~> 3.2.0' | |
gem 'sass-rails', '>= 3.2' | |
gem 'autoprefixer-rails' | |
group :development, :test do | |
gem 'spring' | |
gem 'better_errors' | |
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger' | |
gem 'pry-byebug' | |
end | |
gem 'bcrypt', '~> 3.1.7' | |
gem 'email_validator' | |
# Use unicorn as the app server | |
# gem 'unicorn' | |
# Use Capistrano for deployment | |
# gem 'capistrano-rails', group: :development | |
# Use debugger | |
# gem 'debugger', group: [:development, :test] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment