summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2017-05-16 12:58:47 -0500
committerSamuel Giddins <segiddins@segiddins.me>2017-05-16 12:58:47 -0500
commit433d69072c86fd4bd1cef575dbaf28fd7cb6b8d2 (patch)
tree26c5765be0c76670b2147116d1e7c0ddd36475af
parent396692631648eda130bdd291e91895fa37e75478 (diff)
downloadbundler-seg-spec-rack-avoid-1.6.7.tar.gz
Avoid Rack 1.6.7 in specs for nowseg-spec-rack-avoid-1.6.7
See https://github.com/rack/rack/issues/1168 The above issue broke rack on 1.9.3
-rw-r--r--spec/support/rubygems_ext.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/support/rubygems_ext.rb b/spec/support/rubygems_ext.rb
index 88886c3f1f..cfc481ef83 100644
--- a/spec/support/rubygems_ext.rb
+++ b/spec/support/rubygems_ext.rb
@@ -8,7 +8,9 @@ module Spec
deps = {
# rack 2.x requires Ruby version >= 2.2.2.
# artifice doesn't support rack 2.x now.
- "rack" => "< 2",
+ # TODO: revert to `< 2` once https://github.com/rack/rack/issues/1168 is
+ # addressed
+ "rack" => "1.6.6",
"artifice" => "~> 0.6.0",
"compact_index" => "~> 0.11.0",
"sinatra" => "~> 1.4.7",