class Object
Public Instance Methods
try_require(library)
click to toggle source
# File lib/capistrano/monit.rb, line 1 def try_require(library) require "#{library}" rescue LoadError => e puts "Capistrano / Base Helper: Cannot load library: #{library} Error: #{e}" end