diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-05-25 15:47:48 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-05-25 15:47:48 +0900 |
commit | d1237bc3a43ed87d9a8c574cfbb7e0399ae0ee76 (patch) | |
tree | e898e588aa4e6e1b4911440513c54ccd0bb14e15 /lib/timeout.gemspec | |
parent | 99a078f4eda5394e85e6e740e017835b2aef51d4 (diff) |
Move gemspec files to top of lib directory.
They have version.rb files with same directory.
But version.rb have been removed at https://github.com/ruby/ruby/pull/3375
There is no reason to locate under the library name of directory.
Diffstat (limited to 'lib/timeout.gemspec')
-rw-r--r-- | lib/timeout.gemspec | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/timeout.gemspec b/lib/timeout.gemspec new file mode 100644 index 0000000000..23c6e5fe95 --- /dev/null +++ b/lib/timeout.gemspec @@ -0,0 +1,30 @@ +# 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 +end + +Gem::Specification.new do |spec| + spec.name = name + spec.version = version + spec.authors = ["Yukihiro Matsumoto"] + spec.email = ["[email protected]"] + + 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" + spec.licenses = ["Ruby", "BSD-2-Clause"] + + spec.metadata["homepage_uri"] = spec.homepage + spec.metadata["source_code_uri"] = spec.homepage + + spec.files = Dir.chdir(__dir__) do + `git ls-files -z`.split("\x0").reject do |f| + (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features|rakelib)/|\.(?:git|travis|circleci)|appveyor|Rakefile)}) + end + end + spec.require_paths = ["lib"] +end |