Skip to content

Commit

Permalink
Merge pull request #4411 from fluent/fix-ruby-3.4-dev
Browse files Browse the repository at this point in the history
Fixes for Ruby 3.4-dev
  • Loading branch information
kenhys committed Mar 6, 2024
2 parents 2b4ca5d + ef8a335 commit c56f91e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-ruby-head.yaml
@@ -1,4 +1,4 @@
name: Test
name: Test with Ruby head

on:
schedule:
Expand Down
5 changes: 5 additions & 0 deletions fluentd.gemspec
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 c56f91e

Please sign in to comment.