Silence LoadError only if it is for rubygems
itself
Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net> Co-authored-by: Hiroshi SHIBATA <hsbt@ruby-lang.org>
This commit is contained in:
parent
d668cd188c
commit
0b7969b6a3
Notes:
git
2021-08-18 21:37:58 +09:00
@ -1,6 +1,8 @@
|
||||
begin
|
||||
require 'rubygems'
|
||||
rescue LoadError
|
||||
rescue LoadError => e
|
||||
raise unless e.path == 'rubygems'
|
||||
|
||||
warn "`RubyGems' were not loaded."
|
||||
end if defined?(Gem)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user