ruby-timeout-interrupt/timeout-interrupt.gemspec

34 lines
1.3 KiB
Ruby
Raw Permalink Normal View History

Gem::Specification.new do |spec|
spec.name = "timeout-interrupt"
spec.version = "0.4.0"
2013-03-06 15:10:03 +01:00
spec.authors = ["Denis Knauf"]
spec.description = "Timeout-lib, which interrupts everything, also systemcalls. It uses libc-alarm."
2021-12-12 16:11:03 +01:00
spec.email = ["git+timeout-interrupt@denkn.at"]
spec.summary = "\"Interrupts systemcalls too.\""
spec.licenses = ["LGPLv3"]
2013-03-06 15:10:03 +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
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
# 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"]
2013-03-06 15:10:03 +01:00
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