ruby-changes:62930
From: Hiroshi <ko1@a...>
Date: Mon, 14 Sep 2020 14:11:41 +0900 (JST)
Subject: [ruby-changes:62930] eace12c25b (master): Fixup 8f71bb0e4f76ab12e469d33bc560bd76cc3aaf90
https://git.ruby-lang.org/ruby.git/commit/?id=eace12c25b From eace12c25bd32e7634735aeec0c6919bf67481b4 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Mon, 14 Sep 2020 14:06:02 +0900 Subject: Fixup 8f71bb0e4f76ab12e469d33bc560bd76cc3aaf90 diff --git a/lib/open3.gemspec b/lib/open3.gemspec new file mode 100644 index 0000000..8765920 --- /dev/null +++ b/lib/open3.gemspec @@ -0,0 +1,32 @@ https://github.com/ruby/ruby/blob/trunk/lib/open3.gemspec#L1 +# frozen_string_literal: true + +name = File.basename(__FILE__, ".gemspec") +version = ["lib", Array.new(name.count("-"), "..").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 = ["matz@r..."] + + spec.summary = %q{Popen, but with stderr, too} + spec.description = spec.summary + spec.homepage = "https://github.com/ruby/open3" + spec.licenses = ["Ruby", "BSD-2-Clause"] + + spec.metadata["homepage_uri"] = spec.homepage + spec.metadata["source_code_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 2>/dev/null`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + end + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] +end diff --git a/lib/open3/open3.gemspec b/lib/open3/open3.gemspec deleted file mode 100644 index 72a105a..0000000 --- a/lib/open3/open3.gemspec +++ /dev/null @@ -1,32 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/lib/open3.gemspec#L0 -# 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 = ["matz@r..."] - - spec.summary = %q{Popen, but with stderr, too} - spec.description = spec.summary - spec.homepage = "https://github.com/ruby/open3" - spec.licenses = ["Ruby", "BSD-2-Clause"] - - spec.metadata["homepage_uri"] = spec.homepage - spec.metadata["source_code_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 2>/dev/null`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - end - spec.bindir = "exe" - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } - spec.require_paths = ["lib"] -end -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/