Skip to content

Commit

Permalink
Move .rspec to test_files
Browse files Browse the repository at this point in the history
As .rspec is only required to run the test suite, move it from the
gemspec's files attribute to test_files instead.
  • Loading branch information
mudge committed Nov 17, 2023
1 parent 2e44226 commit cc165ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion re2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit cc165ed

Please sign in to comment.