Skip to content

Commit a47c436

Browse files
authored
Add base64 to runtime dependency (#759)
This PR adds `base64` to runtime dependency to suppress the following Ruby 3.3's warning: ```console $ ruby -wve 'require "http"' ruby 3.3.0dev (2023-08-14T15:48:39Z master 52837fcec2) [x86_64-darwin22] /Users/koic/.rbenv/versions/3.3.0-dev/lib/ruby/gems/3.3.0+0/gems/http-5.1.1/lib/http/chainable.rb:3: warning: base64 which will be not part of the default gems since Ruby 3.4.0 ``` cf: rails/rails#48907
1 parent 9bfcdfb commit a47c436

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

http.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Gem::Specification.new do |gem|
2828
gem.required_ruby_version = ">= 2.6"
2929

3030
gem.add_runtime_dependency "addressable", "~> 2.8"
31+
gem.add_runtime_dependency "base64", "~> 0.1"
3132
gem.add_runtime_dependency "http-cookie", "~> 1.0"
3233
gem.add_runtime_dependency "http-form_data", "~> 2.2"
3334
gem.add_runtime_dependency "llhttp-ffi", "~> 0.5.0"

0 commit comments

Comments
 (0)