我试图从“要求”中解救:没有这样的文件可以加载到 ruby 中,以便提示用户指定 -I 标志,以防他忘记这样做。基本上代码如下所示:
begin
require 'someFile.rb'
rescue
puts "someFile.rb was not found, have you"
puts "forgotten to specify the -I flag?"
exit
end
我曾预计该部分会在未找到rescue
的情况下接管执行,但我的假设是错误的。someFile.rb