summaryrefslogtreecommitdiff
path: root/ext/io
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-10-11 15:27:45 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-03 17:35:29 +0900
commit09266eccf46540e1cd8170800e3b52a6565254d3 (patch)
tree9baf8e1485f82233c9e606ec1c734f138cfefd7f /ext/io
parent7fcbe07d612a967d1904a52617903007c28ffb86 (diff)
[ruby/io-wait] Fixed regexp to reject .travis* at the toplevel only
https://github.com/ruby/io-wait/commit/4434b10e46
Diffstat (limited to 'ext/io')
-rw-r--r--ext/io/wait/io-wait.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io/wait/io-wait.gemspec b/ext/io/wait/io-wait.gemspec
index 83b1692d8f..5659e32cdb 100644
--- a/ext/io/wait/io-wait.gemspec
+++ b/ext/io/wait/io-wait.gemspec
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject do |f|
- f.match(%r{\A(?:test|spec|features)/|\A\.git|\.travis})
+ f.match(%r{\A(?:test|spec|features)/|\A\.(?:git|travis)})
end
end
spec.bindir = "exe"