Skip to content

Instantly share code, notes, and snippets.

@rreinhardt9
Last active November 10, 2015 19:48
Show Gist options
  • Save rreinhardt9/63fd425dbb0ba8501ecc to your computer and use it in GitHub Desktop.
Save rreinhardt9/63fd425dbb0ba8501ecc to your computer and use it in GitHub Desktop.
Base Rails Gemfile Template
source "https://rubygems.org"
gem 'rails', '4.2.4'
gem 'bootstrap-sass', '~> 3.3.5'
gem 'coffee-rails', '~> 4.1.0'
gem 'haml-rails'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'factory_girl_rails'
gem 'pry-byebug'
gem 'pry-rails'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'poltergeist'
end
group :development do
gem 'guard'
gem 'guard-minitest'
gem 'spring'
gem 'web-console', '~> 2.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment