Top Level Namespace
Defined Under Namespace
Modules: JumpCloud
Constant Summary collapse
- JC =
JumpCloud
Instance Method Summary collapse
Instance Method Details
#safeload(paths) ⇒ Object
33 34 35 36 37 38 39 40 41 42 |
# File 'lib/jump_cloud.rb', line 33 def safeload(paths) paths.delete_if do |path| begin require(path) true rescue NameError => e false end end end |