2021-12-12 15:59:25 +01:00
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "timeout-interrupt"
|
|
|
|
spec.version = "0.4.0"
|
2013-03-06 15:10:03 +01:00
|
|
|
|
2021-12-12 15:59:25 +01:00
|
|
|
spec.authors = ["Denis Knauf"]
|
|
|
|
spec.description = "Timeout-lib, which interrupts everything, also systemcalls. It uses libc-alarm."
|
|
|
|
spec.summary = "\"Interrupts systemcalls too.\""
|
|
|
|
spec.licenses = ["LGPLv3"]
|
2013-03-06 15:10:03 +01:00
|
|
|
|
2021-12-12 15:59:25 +01:00
|
|
|
spec.homepage = "https://git.denkn.at/deac/ruby-timeout-interrupt"
|
|
|
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.1.0")
|
2013-03-06 15:10:03 +01:00
|
|
|
|
2021-12-12 15:59:25 +01:00
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
|
|
spec.metadata["changelog_uri"] = spec.homepage
|
2013-03-06 15:10:03 +01:00
|
|
|
|
2021-12-12 15:59:25 +01:00
|
|
|
spec.add_development_dependency "rspec", "~> 3.2"
|
|
|
|
|
|
|
|
# Specify which files should be added to the gem when it is released.
|
|
|
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
|
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
|
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
|
|
end
|
|
|
|
spec.bindir = "bin"
|
|
|
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.require_paths = ["lib"]
|
2013-03-06 15:10:03 +01:00
|
|
|
|
2021-12-12 16:09:49 +01:00
|
|
|
spec.add_runtime_dependency %q<ffi-libc>, '>= 0.1.1'
|
2021-12-12 15:59:25 +01:00
|
|
|
end
|