Gemfile: remove gems no longer needed for Rails master and

make test-unit comment clearer.

[skip ci]
This commit is contained in:
Jon Atack 2016-08-07 10:46:01 +02:00
parent d02246aa24
commit 1d5974b15d
1 changed files with 1 additions and 3 deletions

View File

@ -6,8 +6,6 @@ gem 'rake'
rails = ENV['RAILS'] || '5-0-stable'
if rails == 'master'
gem 'rack', github: 'rack/rack'
gem 'arel', github: 'rails/arel'
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
else
gem 'polyamorous', '~> 1.3'
@ -50,7 +48,7 @@ if ENV['DB'] =~ /mongoid5/
gem 'mongoid', '~> 5.0.0', require: false
end
# Removed from Ruby 2.2 but needed for testing Rails 3.x.
group :test do
# TestUnit was removed from Ruby 2.2 but still needed for testing Rails 3.x.
gem 'test-unit', '~> 3.0' if RUBY_VERSION >= '2.2'
end