From d3ed9e245d2b1edc770af2e3a97ac266c9902b4e Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Mon, 13 Apr 2026 15:11:33 +0200 Subject: [PATCH 1/3] Bundler 4.0.10 --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 82922d8..7cf04ad 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -137,4 +137,4 @@ CHECKSUMS unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f BUNDLED WITH - 4.0.8 + 4.0.10 From c0154e313a25847492369f63223cba9518b775d1 Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Mon, 13 Apr 2026 15:12:20 +0200 Subject: [PATCH 2/3] Ruby 4.0 --- .github/workflows/rspec.yml | 2 +- .rubocop.yml | 2 +- .standard.yml | 2 +- errbit_plugin.gemspec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index 91fff89..d72a3d7 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.4", "4.0", "head"] + ruby: ["4.0", "head"] steps: - name: Harden the runner (Audit all outbound calls) diff --git a/.rubocop.yml b/.rubocop.yml index 6c119a9..f8534c4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -5,7 +5,7 @@ plugins: - rubocop-disable_syntax AllCops: - TargetRubyVersion: 3.4 + TargetRubyVersion: 4.00 NewCops: enable # We use standard as a linter and formatter instead Rubocop. diff --git a/.standard.yml b/.standard.yml index 65c3e05..323fdc2 100644 --- a/.standard.yml +++ b/.standard.yml @@ -1 +1 @@ -ruby_version: 3.4 +ruby_version: 4.0 diff --git a/errbit_plugin.gemspec b/errbit_plugin.gemspec index 82b966d..a7cc0af 100644 --- a/errbit_plugin.gemspec +++ b/errbit_plugin.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = "Base to create an errbit plugin" spec.homepage = "https://github.com/errbit/errbit_plugin" spec.license = "MIT" - spec.required_ruby_version = ">= 3.4.0" + spec.required_ruby_version = ">= 4.0.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage From ce88d37e3bc0d17839f63fd6ec3fdd9f8c69cacd Mon Sep 17 00:00:00 2001 From: Igor Zubkov Date: Mon, 13 Apr 2026 15:13:32 +0200 Subject: [PATCH 3/3] Fix --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index f8534c4..fc0e33b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -5,7 +5,7 @@ plugins: - rubocop-disable_syntax AllCops: - TargetRubyVersion: 4.00 + TargetRubyVersion: 4.0 NewCops: enable # We use standard as a linter and formatter instead Rubocop.