Closed dayglojesus closed 9 years ago
This fact is confined, but the gem reference is causing noisy errors on Linux hosts that don't have the gem installed.
The require directive (as well any other refs) need to go into a begin rescue clause that catches LoadError.
require
begin
rescue
LoadError
I modified my local version and just created a pull request ;)
Fix is in develop. Ready for release 3.8.3.
This fact is confined, but the gem reference is causing noisy errors on Linux hosts that don't have the gem installed.
The
require
directive (as well any other refs) need to go into abegin
rescue
clause that catchesLoadError
.