Skip to content

Instantly share code, notes, and snippets.

@johnsonch
Last active October 1, 2015 18:47
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 johnsonch/00d410c0ae07396f7b0c to your computer and use it in GitHub Desktop.
Save johnsonch/00d410c0ae07396f7b0c to your computer and use it in GitHub Desktop.
2015 MATC Fall Ruby on Rails Gemfile
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bootstrap-sass', '~> 3.2.0.0'
gem 'bcrypt'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'sqlite3'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment