We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8b9d46 + 9f88d73 commit abd62e7Copy full SHA for abd62e7
rbs.gemspec
@@ -29,7 +29,10 @@ Gem::Specification.new do |spec|
29
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
30
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
31
`git ls-files -z`.split("\x0").reject do |f|
32
- f.match(%r{^(test|spec|features|bin|steep|benchmark)/}) || f.match(/Gemfile\.lock/)
+ [
33
+ %r{^(test|spec|features|bin|steep|benchmark)/},
34
+ /Gemfile/
35
+ ].any? {|r| f.match(r) }
36
end
37
38
spec.extensions = %w{ext/rbs_extension/extconf.rb}
0 commit comments