We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ebbf305 + a16082b commit 2291498Copy full SHA for 2291498
Appraisals
@@ -30,6 +30,8 @@ end
30
# Used for head (nightly) releases of ruby, truffleruby, and jruby.
31
# Split into discrete appraisals if one of them needs a dependency locked discretely.
32
appraise "head" do
33
+ # Why is gem "cgi" here? See: https://github.com/vcr/vcr/issues/1057
34
+ gem "cgi", ">= 0.5"
35
gem "benchmark", "~> 0.4", ">= 0.4.1"
36
eval_gemfile "modular/runtime_heads.gemfile"
37
end
gemfiles/head.gemfile
@@ -2,6 +2,7 @@
2
3
source "https://rubygems.org"
4
5
+gem "cgi", ">= 0.5"
6
7
8
gemspec path: "../"
oauth2.gemspec
@@ -198,6 +198,9 @@ Thanks, @pboling / @galtzo
198
# | # ./spec/spec_helper.rb:8:in `<top (required)>'
199
# So that's why we need backports.
200
spec.add_development_dependency("backports", "~> 3.25", ">= 3.25.1") # ruby >= 0
201
- spec.add_development_dependency("vcr", ">= 4") # 6.0 claims to support ruby >= 2.3, but fails on ruby 2.4
202
- spec.add_development_dependency("webmock", ">= 3") # Last version to support ruby >= 2.3
+ # In Ruby 3.5 (HEAD) the CGI library has been pared down, so we also need to depend on gem "cgi" for ruby@head
+ # This is done in the "head" appraisal.
203
+ # See: https://github.com/vcr/vcr/issues/1057
204
+ spec.add_development_dependency("vcr", ">= 4") # 6.0 claims to support ruby >= 2.3, but fails on ruby 2.4
205
+ spec.add_development_dependency("webmock", ">= 3") # Last version to support ruby >= 2.3
206
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments