1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Adjust gemspec location of default gems

This commit is contained in:
Hiroshi SHIBATA 2021-12-09 19:28:50 +09:00
parent f5d80c26d4
commit d74fe2061d
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -1,8 +1,10 @@
# frozen_string_literal: true
name = File.basename(__FILE__, ".gemspec")
version = File.foreach(File.join(__dir__, "lib/open3/version.rb")) do |line|
/^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1
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|