forked from djberg96/proc-wait3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proc-wait3.gemspec
32 lines (28 loc) · 1.26 KB
/
proc-wait3.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'proc-wait3'
spec.version = '1.9.0'
spec.author = 'Daniel J. Berger'
spec.license = 'Apache-2.0'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'https://github.com/djberg96/proc-wait3'
spec.summary = 'Adds wait3, wait4 and other methods to the Process module'
spec.test_file = 'spec/proc_wait3_spec.rb'
spec.extensions = ['ext/extconf.rb']
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.cert_chain = Dir['certs/*']
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec', '~> 3.9')
spec.metadata = {
'homepage_uri' => 'https://github.com/djberg96/proc-wait3',
'bug_tracker_uri' => 'https://github.com/djberg96/proc-wait3/issues',
'changelog_uri' => 'https://github.com/djberg96/proc-wait3/blob/master/CHANGES.md',
'documentation_uri' => 'https://github.com/djberg96/proc-wait3/wiki',
'source_code_uri' => 'https://github.com/djberg96/proc-wait3',
'wiki_uri' => 'https://github.com/djberg96/proc-wait3/wiki'
}
spec.description = <<-EOF
The proc-wait3 library adds the wait3, wait4, waitid, pause, sigsend,
and getrusage methods to the Process module.
EOF
end