Skip to content

Commit

Permalink
Downgrade rack-test to 0.6.3, to avoid breaking projects.
Browse files Browse the repository at this point in the history
rack-test 0.7.0 introduces controversial changes, in particular about
body provided on DELETE requests:

rack/rack-test#132

Waiting for a solution there, we force the version of rack-test to
a version that is known for working on Enspirit projets.
  • Loading branch information
blambeau committed Jul 26, 2017
1 parent 7c0c24f commit a24648d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/restful/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PATH
remote: ../..
specs:
webspicy (0.2.0)
webspicy (0.2.1)
finitio (~> 0.5.2)
http (~> 2)
path (~> 1.3)
rack-test (~> 0.7)
rack-test (~> 0.6.3)
rspec (~> 3.6)

GEM
Expand Down Expand Up @@ -34,8 +34,8 @@ GEM
rack (2.0.3)
rack-protection (2.0.0)
rack
rack-test (0.7.0)
rack (>= 1.0, < 3)
rack-test (0.6.3)
rack (>= 1.0)
rake (10.5.0)
rspec (3.6.0)
rspec-core (~> 3.6.0)
Expand Down
2 changes: 1 addition & 1 deletion webspicy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "sinatra", "~> 2.0"

s.add_runtime_dependency "rspec", "~> 3.6"
s.add_runtime_dependency "rack-test", "~> 0.7"
s.add_runtime_dependency "rack-test", "~> 0.6.3"
s.add_runtime_dependency "finitio", "~> 0.5.2"
s.add_runtime_dependency "http", "~> 2"
s.add_runtime_dependency "path", "~> 1.3"
Expand Down

0 comments on commit a24648d

Please sign in to comment.