From cc165edc5c11ac68fea2d1e57dd0b916498df9fe Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Fri, 17 Nov 2023 19:25:39 +0000 Subject: [PATCH] Move .rspec to test_files As .rspec is only required to run the test suite, move it from the gemspec's files attribute to test_files instead. --- re2.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/re2.gemspec b/re2.gemspec index 1a7475d..8fa405d 100644 --- a/re2.gemspec +++ b/re2.gemspec @@ -11,7 +11,6 @@ Gem::Specification.new do |s| s.license = "BSD-3-Clause" s.required_ruby_version = ">= 2.6.0" s.files = [ - ".rspec", "dependencies.yml", "ext/re2/extconf.rb", "ext/re2/re2.cc", @@ -28,6 +27,7 @@ Gem::Specification.new do |s| "re2.gemspec" ] s.test_files = [ + ".rspec", "spec/spec_helper.rb", "spec/re2_spec.rb", "spec/kernel_spec.rb",