2020-07-28 11:31:52 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
name = File.basename(__FILE__, ".gemspec")
|
|
|
|
version = ["lib", Array.new(name.count("-")+1, "..").join("/")].find do |dir|
|
|
|
|
break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line|
|
|
|
|
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
|
|
|
|
end rescue nil
|
2019-11-08 05:21:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
2020-07-28 11:31:52 -04:00
|
|
|
spec.name = name
|
|
|
|
spec.version = version
|
2019-11-08 05:21:47 -05:00
|
|
|
spec.authors = ["Yukihiro Matsumoto"]
|
|
|
|
spec.email = ["matz@ruby-lang.org"]
|
|
|
|
|
|
|
|
spec.summary = %q{Auto-terminate potentially long-running operations in Ruby.}
|
|
|
|
spec.description = %q{Auto-terminate potentially long-running operations in Ruby.}
|
|
|
|
spec.homepage = "https://github.com/ruby/timeout"
|
2020-08-18 07:15:59 -04:00
|
|
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
2019-11-08 05:21:47 -05:00
|
|
|
|
|
|
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
|
|
spec.metadata["source_code_uri"] = spec.homepage
|
|
|
|
|
2022-05-25 05:56:42 -04:00
|
|
|
spec.files = Dir.chdir(__dir__) do
|
|
|
|
`git ls-files -z`.split("\x0").reject do |f|
|
2022-05-25 06:04:31 -04:00
|
|
|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features|rakelib)/|\.(?:git|travis|circleci)|appveyor|Rakefile)})
|
2022-05-25 05:56:42 -04:00
|
|
|
end
|
2019-11-08 05:21:47 -05:00
|
|
|
end
|
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
end
|