Fix rubocop Bundler/OrderedGems offenses

This commit is contained in:
Gonzalo Rodriguez 2018-06-26 13:38:16 -03:00
parent 9e2fef7abe
commit 596ddabb0f
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1
2 changed files with 5 additions and 5 deletions

View file

@ -3,12 +3,12 @@ appraise "rack_2_0" do
end
appraise "rack_1_6" do
gem "rack", "~> 1.6.9"
# Override activesupport and actionpack version constraints by making
# it more loose so it's compatible with rack 1.6.x
gem "activesupport", ">= 4.2"
gem "actionpack", ">= 4.2"
gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6.9"
# Override rack-test version constraint by making it more loose
# so it's compatible with actionpack 4.2.x

View file

@ -2,9 +2,9 @@
source "https://rubygems.org"
gem "rack", "~> 1.6.9"
gem "activesupport", ">= 4.2"
gem "actionpack", ">= 4.2"
gem "activesupport", ">= 4.2"
gem "rack", "~> 1.6.9"
gem "rack-test", ">= 0.6"
gemspec path: "../"