Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ end
# Used for head (nightly) releases of ruby, truffleruby, and jruby.
# Split into discrete appraisals if one of them needs a dependency locked discretely.
appraise "head" do
# Why is gem "cgi" here? See: https://github.com/vcr/vcr/issues/1057
gem "cgi", ">= 0.5"
gem "benchmark", "~> 0.4", ">= 0.4.1"
eval_gemfile "modular/runtime_heads.gemfile"
end
Expand Down
1 change: 1 addition & 0 deletions gemfiles/head.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

source "https://rubygems.org"

gem "cgi", ">= 0.5"
gem "benchmark", "~> 0.4", ">= 0.4.1"

gemspec path: "../"
Expand Down
7 changes: 5 additions & 2 deletions oauth2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ Thanks, @pboling / @galtzo
# | # ./spec/spec_helper.rb:8:in `<top (required)>'
# So that's why we need backports.
spec.add_development_dependency("backports", "~> 3.25", ">= 3.25.1") # ruby >= 0
spec.add_development_dependency("vcr", ">= 4") # 6.0 claims to support ruby >= 2.3, but fails on ruby 2.4
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.
# See: https://github.com/vcr/vcr/issues/1057
spec.add_development_dependency("vcr", ">= 4") # 6.0 claims to support ruby >= 2.3, but fails on ruby 2.4
spec.add_development_dependency("webmock", ">= 3") # Last version to support ruby >= 2.3
end
Loading