1
0
mirror of https://github.com/meineerde/rackstash.git synced 2026-02-01 01:37:12 +00:00

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.
This commit is contained in:
Holger Just 2019-01-11 11:06:22 +01:00
parent 7695070a2f
commit d53679cb83

View File

@ -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'