mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Support directory layout of ruby/ruby repository
This commit is contained in:
parent
52d3e31d27
commit
f07a2613e3
1 changed files with 11 additions and 3 deletions
|
@ -1,9 +1,17 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
lib = File.expand_path("../lib", __FILE__)
|
|
||||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
||||||
|
|
||||||
version = File.foreach(File.expand_path("ipaddr.rb", lib)).find do |line|
|
if File.exist?(File.expand_path("ipaddr.gemspec"))
|
||||||
|
lib = File.expand_path("../lib", __FILE__)
|
||||||
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||||
|
|
||||||
|
file = File.expand_path("ipaddr.rb", lib)
|
||||||
|
else
|
||||||
|
# for ruby-core
|
||||||
|
file = File.expand_path("../ipaddr.rb", __FILE__)
|
||||||
|
end
|
||||||
|
|
||||||
|
version = File.foreach(file).find do |line|
|
||||||
/^\s*VERSION\s*=\s*["'](.*)["']/ =~ line and break $1
|
/^\s*VERSION\s*=\s*["'](.*)["']/ =~ line and break $1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue