Skip to content

Instantly share code, notes, and snippets.

@beverlynelson
beverlynelson / Gemfile
Created March 10, 2016 01:53 — forked from grantspeelman/Gemfile
Example Gemfile files preparing for the next rails upgrade
@next_upgrade ||= false
source 'https://rubygems.org'
if @next_upgrade
gem 'rails', '5.0.0.beta3'
gem 'rails-controller-testing' # https://github.com/rails/rails-controller-testing
else
gem 'rails', '~> 4.2.5.1'
end