-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess_exists.gemspec
27 lines (23 loc) · 1.12 KB
/
process_exists.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'process_exists/version'
Gem::Specification.new do |gem|
gem.name = 'process_exists'
gem.version = ProcessExists::VERSION
gem.summary = 'Checks if a PID exists.'
gem.description = 'Sends a null signal to a process or a group of processes specified by pid to check if it exists.'
gem.license = 'MIT'
gem.authors = ['wilsonsilva']
gem.email = '[email protected]'
gem.homepage = 'https://github.com/wilsonsilva/process_exists'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency 'bundler', '~> 2.1'
gem.add_development_dependency 'rake', '~> 13.1'
gem.add_development_dependency 'rspec', '~> 3.9'
gem.add_development_dependency 'simplecov', '~> 0.17.1'
gem.add_development_dependency 'simplecov-console', '~> 0.7'
gem.add_development_dependency 'yard', '~> 0.9'
end