From d04a90f9107188550325cca14a76f23ca088dbc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 May 2022 16:39:16 +0000 Subject: [PATCH] Update rack requirement from ~> 1.1 to >= 1.1, < 3.0 Updates the requirements on [rack](https://github.com/rack/rack) to permit the latest version. - [Release notes](https://github.com/rack/rack/releases) - [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md) - [Commits](https://github.com/rack/rack/compare/1.2.1...2.2.3.1) --- updated-dependencies: - dependency-name: rack dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- frank.gemspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 09ba060..364fbe1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -5,7 +5,7 @@ PATH haml (~> 3.0) mongrel (~> 1.2.0.pre2) net-ssh (~> 2.0) - rack (~> 1.1) + rack (>= 1.1, < 3.0) tilt (~> 1.3) GEM @@ -46,7 +46,7 @@ GEM net-ssh (>= 2.0.9) net-ssh (2.3.0) polyglot (0.3.1) - rack (1.2.1) + rack (2.2.3.1) rack-test (0.5.4) rack (>= 1.0) rake (0.8.7) @@ -59,7 +59,7 @@ GEM rspec-expectations (2.6.0) diff-lcs (~> 1.1.2) rspec-mocks (2.6.0) - tilt (1.3.3) + tilt (1.4.1) treetop (1.4.8) polyglot (>= 0.3.1) diff --git a/frank.gemspec b/frank.gemspec index 7812627..6364025 100644 --- a/frank.gemspec +++ b/frank.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] - s.add_runtime_dependency 'rack', '~> 1.1' + s.add_runtime_dependency 'rack', '>= 1.1', '< 3.0' s.add_runtime_dependency 'mongrel', '~> 1.2.0.pre2' s.add_runtime_dependency 'haml', '~> 3.0' s.add_runtime_dependency 'tilt', '~> 1.3'