From 991c9ec5ab8751166357632a4a9697a8b93bd327 Mon Sep 17 00:00:00 2001 From: simukappu Date: Thu, 29 Feb 2024 23:56:04 +0900 Subject: [PATCH] Update required Ruby version to v2.4+ --- README.md | 2 +- fluent-plugin-kinesis.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a80fb9..24e5bff 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Or just download specify your Ruby library path. Below is the sample for specify export RUBYLIB=$RUBYLIB:/path/to/aws-fluent-plugin-kinesis/lib ## Dependencies - * Ruby 2.3.0+ + * Ruby 2.4.2+ * Fluentd 0.14.22+ (td-agent v3.1.0+) ## Basic Usage diff --git a/fluent-plugin-kinesis.gemspec b/fluent-plugin-kinesis.gemspec index 46a182d..276a3be 100644 --- a/fluent-plugin-kinesis.gemspec +++ b/fluent-plugin-kinesis.gemspec @@ -28,7 +28,7 @@ Gem::Specification.new do |spec| spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.required_ruby_version = '>= 2.3' + spec.required_ruby_version = '>= 2.4' spec.add_dependency "fluentd", ">= 0.14.22", "< 2"