34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
Gem::Specification.new do |spec|
|
|
spec.name = "timeout-interrupt"
|
|
spec.version = "0.4.0"
|
|
|
|
spec.authors = ["Denis Knauf"]
|
|
spec.description = "Timeout-lib, which interrupts everything, also systemcalls. It uses libc-alarm."
|
|
spec.email = ["git+timeout-interrupt@denkn.at"]
|
|
|
|
spec.summary = "\"Interrupts systemcalls too.\""
|
|
spec.licenses = ["LGPLv3"]
|
|
|
|
spec.homepage = "https://git.denkn.at/deac/ruby-timeout-interrupt"
|
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.1.0")
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
spec.metadata["changelog_uri"] = spec.homepage
|
|
|
|
# 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.add_runtime_dependency 'ffi-libc', '>= 0.1.1'
|
|
spec.add_development_dependency 'test-unit'
|
|
spec.add_development_dependency 'shoulda'
|
|
spec.add_development_dependency 'rake'
|
|
spec.add_development_dependency 'bundler'
|
|
end
|