From 0aed4341b577986e9198c73808d4971d13467365 Mon Sep 17 00:00:00 2001 From: Ufuk Kayserilioglu Date: Wed, 13 May 2026 15:24:23 +0300 Subject: [PATCH] We should not ship the contents of the `sorbet` folder in the gem The contents of the `sorbet` folder are only used for typechecking the project internally and is not useful for any of the consumers. --- packwerk.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packwerk.gemspec b/packwerk.gemspec index 2104d8ea..961d237e 100644 --- a/packwerk.gemspec +++ b/packwerk.gemspec @@ -33,7 +33,7 @@ Gem::Specification.new do |spec| spec.bindir = "exe" spec.executables << "packwerk" - spec.files = Dir["CHANGELOG.md", "LICENSE.md", "README.md", "lib/**/*", "sorbet/**/*"] + spec.files = Dir["CHANGELOG.md", "LICENSE.md", "README.md", "lib/**/*"] spec.require_paths = ["lib"] spec.required_ruby_version = ">= 3.3"