Don't fail when 'RubyGems' are not available.

Although 'RubyGems' are always available in upstream Ruby, it might not
be available optionally when Ruby is delivered via packaging systems.
E.g. Linux distributions.
This commit is contained in:
Vít Ondruch 2019-12-18 14:55:25 +01:00 коммит произвёл Hiroshi SHIBATA
Родитель 55c9a95ac8
Коммит 0ad7f2dd19
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1,4 +1,7 @@
require 'rubygems.rb' if defined?(Gem)
begin
require 'rubygems.rb'
rescue LoadError
end if defined?(Gem)
begin
require 'did_you_mean'