Skip to content

Commit

Permalink
Add missing gem dependency on Ruby 3.4-dev
Browse files Browse the repository at this point in the history
base64, csv and drb gems aren't part of the default gems since Ruby
3.4.0.

Signed-off-by: Takuro Ashie <[email protected]>
  • Loading branch information
ashie committed Feb 22, 2024
1 parent 7a44218 commit ef8a335
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fluentd.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency("strptime", [">= 0.2.4", "< 1.0.0"])
gem.add_runtime_dependency("webrick", ["~> 1.4"])

# gems that aren't default gems as of Ruby 3.4
gem.add_runtime_dependency("base64", ["~> 0.2"])
gem.add_runtime_dependency("csv", ["~> 3.2"])
gem.add_runtime_dependency("drb", ["~> 2.2"])

# build gem for a certain platform. see also Rakefile
fake_platform = ENV['GEM_BUILD_FAKE_PLATFORM'].to_s
gem.platform = fake_platform unless fake_platform.empty?
Expand Down

0 comments on commit ef8a335

Please sign in to comment.