Skip to content

Commit

Permalink
Merge pull request #35 from danielmorrison/webrick-version
Browse files Browse the repository at this point in the history
Relax webrick and rack version requirements
  • Loading branch information
alisnic committed Jan 19, 2024
2 parents fed2232 + eb939c1 commit 254eeb1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
12 changes: 8 additions & 4 deletions Gemfile.lock
Expand Up @@ -4,11 +4,12 @@ PATH
stackprof-webnav (1.0.3)
better_errors (~> 1.1.0)
haml (~> 5.1.2)
rackup (>= 1.0.0, < 3.0.0)
ruby-graphviz (~> 1.2.4)
sinatra (~> 2.1.0)
sinatra-contrib (~> 2.1.0)
sinatra (>= 2.1.0, < 5.0.0)
sinatra-contrib (>= 2.1.0, < 5.0.0)
stackprof (>= 0.2.13)
webrick (~> 1.7.0)
webrick (~> 1.7)

GEM
remote: https://rubygems.org/
Expand All @@ -34,6 +35,9 @@ GEM
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rackup (1.0.0)
rack (< 3)
webrick
rake (10.5.0)
rexml (3.2.5)
rspec (3.9.0)
Expand Down Expand Up @@ -74,7 +78,7 @@ PLATFORMS
DEPENDENCIES
bundler (~> 2.2)
pry
rack-test (~> 1.1.0)
rack-test (>= 1.1.0, < 3.0.0)
rake (~> 10.1)
rspec (~> 3.9.0)
stackprof-webnav!
Expand Down
9 changes: 5 additions & 4 deletions stackprof-webnav.gemspec
Expand Up @@ -21,15 +21,16 @@ Gem::Specification.new do |spec|
spec.bindir = 'bin'
spec.executables << 'stackprof-webnav'

spec.add_dependency "sinatra", "~> 2.1.0"
spec.add_dependency "sinatra", ">= 2.1.0", "< 5.0.0"
spec.add_dependency "haml", "~> 5.1.2"
spec.add_dependency "stackprof", ">= 0.2.13"
spec.add_dependency "better_errors", "~> 1.1.0"
spec.add_dependency "rackup", ">= 1.0.0", "< 3.0.0"
spec.add_dependency "ruby-graphviz", "~> 1.2.4"
spec.add_dependency "sinatra-contrib", "~> 2.1.0"
spec.add_dependency "webrick", "~> 1.7.0"
spec.add_dependency "sinatra-contrib", ">= 2.1.0", "< 5.0.0"
spec.add_dependency "webrick", "~> 1.7"
spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake", "~> 10.1"
spec.add_development_dependency "rspec", "~> 3.9.0"
spec.add_development_dependency "rack-test", "~> 1.1.0"
spec.add_development_dependency "rack-test", ">= 1.1.0", "< 3.0.0"
end

0 comments on commit 254eeb1

Please sign in to comment.