зеркало из https://github.com/github/ruby.git
benchmark/driver.rb: simplify LoadError handling
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
d081b3c62d
Коммит
c2ae11e308
|
@ -3,18 +3,11 @@
|
||||||
# Ruby Benchmark driver
|
# Ruby Benchmark driver
|
||||||
#
|
#
|
||||||
|
|
||||||
first = true
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'optparse'
|
require 'optparse'
|
||||||
rescue LoadError
|
rescue LoadError
|
||||||
if first
|
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
||||||
first = false
|
require 'optparse'
|
||||||
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
|
||||||
retry
|
|
||||||
else
|
|
||||||
raise
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'benchmark'
|
require 'benchmark'
|
||||||
|
|
Загрузка…
Ссылка в новой задаче