зеркало из https://github.com/github/ruby.git
* test/test_securerandom.rb: use File.exist? instead of File.exists?
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
2e1d21f53c
Коммит
3efb36c25c
|
@ -1,3 +1,7 @@
|
|||
Sun Feb 16 15:53:36 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* test/test_securerandom.rb: File.exists? is deprecated. use File.exist?
|
||||
|
||||
Sun Feb 16 15:05:00 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* test/pathname/test_pathname.rb: File.exists? is deprecated. use File.exist?
|
||||
|
|
|
@ -176,7 +176,7 @@ end
|
|||
$LOADED_FEATURES.delete_if { |path|
|
||||
if File.basename(path) == basename
|
||||
$LOAD_PATH.any? { |dir|
|
||||
File.exists?(File.join(dir, basename))
|
||||
File.exist?(File.join(dir, basename))
|
||||
}
|
||||
end
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче