Skip to content

Instantly share code, notes, and snippets.

@thomasgallagher
Created December 7, 2015 07:42
Show Gist options
  • Save thomasgallagher/42df30f65e1ae6f91534 to your computer and use it in GitHub Desktop.
Save thomasgallagher/42df30f65e1ae6f91534 to your computer and use it in GitHub Desktop.
Ruby 2.2.3 and Rails 4.2.5 basic gem file (no comments, alphabetical)
source 'https://rubygems.org'
ruby '2.2.3'
gem 'rails', '4.2.5'
gem 'pg', '~> 0.15'
gem 'coffee-rails', '~> 4.1.0'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'turbolinks'
gem 'uglifier', '>= 1.3.0'
gem 'unicorn'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment