From 7c37a2e6a1139c25ca2f40d3e924940fa4f9ffb7 Mon Sep 17 00:00:00 2001 From: Alexander Momchilov Date: Tue, 3 Mar 2026 18:17:59 -0500 Subject: [PATCH 1/2] Add missing require --- README.md | 3 ++- lib/rubocop/cop/type_toolkit/plugin.rb | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d5f1b1..3c563d4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ This gem ships with RuboCop cops that we recommend you enable for your applicati ```yml plugins: - rubocop-other-extension - - rubocop-type_toolkit + - type_toolkit: + require_path: rubocop-type_toolkit ``` ### Cherry-picking features diff --git a/lib/rubocop/cop/type_toolkit/plugin.rb b/lib/rubocop/cop/type_toolkit/plugin.rb index 9cbfa0e..a46c367 100644 --- a/lib/rubocop/cop/type_toolkit/plugin.rb +++ b/lib/rubocop/cop/type_toolkit/plugin.rb @@ -2,6 +2,7 @@ # frozen_string_literal: true require "lint_roller" +require "type_toolkit/version" module RuboCop module Cop From bdf09969e952aa0ca97b93efa9220fdeecbf65d8 Mon Sep 17 00:00:00 2001 From: Alexander Momchilov Date: Tue, 3 Mar 2026 18:19:27 -0500 Subject: [PATCH 2/2] Release `v0.0.5` --- Gemfile.lock | 4 ++-- lib/type_toolkit/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 95a28e2..6fc5193 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - type_toolkit (0.0.4) + type_toolkit (0.0.5) lint_roller rubocop (>= 1.72.0) @@ -179,7 +179,7 @@ CHECKSUMS tapioca (0.17.10) sha256=880a682ca8314f798dd09e9f104134fbf1a713c13be51f7dd4741dd434e6471b thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73 tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f - type_toolkit (0.0.4) + type_toolkit (0.0.5) unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42 unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f yard (0.9.38) sha256=721fb82afb10532aa49860655f6cc2eaa7130889df291b052e1e6b268283010f diff --git a/lib/type_toolkit/version.rb b/lib/type_toolkit/version.rb index 28b7e5f..03bbc28 100644 --- a/lib/type_toolkit/version.rb +++ b/lib/type_toolkit/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module TypeToolkit - VERSION = "0.0.4" + VERSION = "0.0.5" end