File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,15 @@ Gem::Specification.new do |spec|
8
8
spec . description = %q{Waits until IO is readable or writable without blocking.}
9
9
spec . homepage = "https://github.com/ruby/io-wait"
10
10
spec . licenses = [ "Ruby" , "BSD-2-Clause" ]
11
- spec . required_ruby_version = Gem ::Requirement . new ( ">= 3.0 .0" )
11
+ spec . required_ruby_version = Gem ::Requirement . new ( ">= 2.3 .0" )
12
12
13
13
spec . metadata [ "homepage_uri" ] = spec . homepage
14
14
spec . metadata [ "source_code_uri" ] = spec . homepage
15
15
16
16
spec . files = Dir . chdir ( File . expand_path ( '..' , __FILE__ ) ) do
17
- `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{\A (?:test|spec|features)/} ) }
17
+ `git ls-files -z` . split ( "\x0 " ) . reject do |f |
18
+ f . match ( %r{\A (?:test|spec|features)/|\A \. git|\. travis} )
19
+ end
18
20
end
19
21
spec . bindir = "exe"
20
22
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
You can’t perform that action at this time.
0 commit comments