Does the Ruby rescue statement modifier really don't work with require?
irb(main):001:0> require 'a' rescue nil
LoadError: no such file to load -- a
from (irb):1:in `require'
from (irb):1
from :0
|
|
|
You can rescue from a This works as you expect:
|
|||||
|