From d53679cb83f150e6393b2ea8d7d37f8073311480 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Fri, 11 Jan 2019 11:06:22 +0100 Subject: [PATCH] Enforce less restrictive version requirements for rake and bundler With the release of Bundler 2.0, things got a bit messy. Since both bundler and rake are very likely to retain backwards compatibility due to their wide use in the wild, this is likely safe enough. In any case, these are "only" development dependencies which do not affect any production users of Rackstash but merely people running the tests. --- rackstash.gemspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rackstash.gemspec b/rackstash.gemspec index 0cb888f..51e2423 100644 --- a/rackstash.gemspec +++ b/rackstash.gemspec @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2019 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. @@ -39,8 +39,8 @@ Gem::Specification.new do |spec| spec.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.2' - spec.add_development_dependency 'bundler', '~> 1.12' - spec.add_development_dependency 'rake', '~> 10.0' + spec.add_development_dependency 'bundler', '>= 1.12' + spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'coveralls', '~> 0.8.20'