Skip to content

Instantly share code, notes, and snippets.

@schaary
Created September 26, 2014 09:35
Show Gist options
  • Save schaary/05f31cbc6900558af208 to your computer and use it in GitHub Desktop.
Save schaary/05f31cbc6900558af208 to your computer and use it in GitHub Desktop.
Basic Gemfile at the Beginning of a Project
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