Skip to content

Commit c56f91e

Browse files
authored
Merge pull request #4411 from fluent/fix-ruby-3.4-dev
Fixes for Ruby 3.4-dev
2 parents 2b4ca5d + ef8a335 commit c56f91e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Diff for: .github/workflows/test-ruby-head.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test
1+
name: Test with Ruby head
22

33
on:
44
schedule:

Diff for: fluentd.gemspec

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ Gem::Specification.new do |gem|
3030
gem.add_runtime_dependency("strptime", [">= 0.2.4", "< 1.0.0"])
3131
gem.add_runtime_dependency("webrick", ["~> 1.4"])
3232

33+
# gems that aren't default gems as of Ruby 3.4
34+
gem.add_runtime_dependency("base64", ["~> 0.2"])
35+
gem.add_runtime_dependency("csv", ["~> 3.2"])
36+
gem.add_runtime_dependency("drb", ["~> 2.2"])
37+
3338
# build gem for a certain platform. see also Rakefile
3439
fake_platform = ENV['GEM_BUILD_FAKE_PLATFORM'].to_s
3540
gem.platform = fake_platform unless fake_platform.empty?

0 commit comments

Comments
 (0)