From c390dd266bc73b428a0b45b00707cbe8ab43695f Mon Sep 17 00:00:00 2001 From: SuguruMatsumoto-rni Date: Thu, 29 Jan 2026 12:18:05 +0900 Subject: [PATCH] Exclude Gemfile.lock from gem package to avoid false positive security alerts --- apollo_upload_server.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apollo_upload_server.gemspec b/apollo_upload_server.gemspec index 82baa22..17fb37f 100644 --- a/apollo_upload_server.gemspec +++ b/apollo_upload_server.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject do |f| - f.match(%r{^(test|spec|features)/}) + f.match(%r{^(test|spec|features)/}) || f == "Gemfile.lock" end spec.require_paths = ['lib']