Skip to content

Commit 48158d7

Browse files
bastelfreakevgeni
authored andcommitted
Fixes #38357 - add base64 runtime dependency
lib/proxy/util.rb does a `require 'base64'`. This gem won't be part of Ruby core with Ruby 3.4. It needs to be listed explicitly in the gemspec.
1 parent 6624f2c commit 48158d7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

smart_proxy.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
1313
s.license = 'GPL-3.0'
1414
s.extra_rdoc_files = ["README.md"]
1515
s.required_ruby_version = '>= 2.7'
16+
s.add_dependency 'base64'
1617
s.add_dependency 'json'
1718
s.add_dependency 'logging'
1819
s.add_dependency 'rack', '>= 1.3'

0 commit comments

Comments
 (0)