зеркало из https://github.com/github/ruby.git
vpath.rb: no rbconfig.rb
* tool/vpath.rb (VPath#list): no rbconfig.rb, to get rid of cyclic dependency. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7d2725493e
Коммит
ba7a0b4643
|
@ -66,12 +66,13 @@ class VPath
|
||||||
end
|
end
|
||||||
|
|
||||||
def list
|
def list
|
||||||
@separator ||= (require 'rbconfig'; RbConfig::CONFIG["PATH_SEPARATOR"])
|
|
||||||
@additional.reject! do |dirs|
|
@additional.reject! do |dirs|
|
||||||
case dirs
|
case dirs
|
||||||
when String
|
when String
|
||||||
@list << dirs
|
@list << dirs
|
||||||
when Array
|
when Array
|
||||||
|
raise "--path-separator option is needed for vpath list" unless @separator
|
||||||
|
# @separator ||= (require 'rbconfig'; RbConfig::CONFIG["PATH_SEPARATOR"])
|
||||||
@list.concat(dirs[0].split(@separator))
|
@list.concat(dirs[0].split(@separator))
|
||||||
end
|
end
|
||||||
true
|
true
|
||||||
|
|
Загрузка…
Ссылка в новой задаче