Sha256: 9f53399067f7080dfba3e0958146f1020f9104d77c37ef94ebe57c901b959227
Contents?: true
Size: 584 Bytes
Versions: 52
Compression:
Stored size: 584 Bytes
Contents
class TestLab # Utility Error Class class UtilityError < TestLabError; end # Utility Module # # This provides an interface to our various child utility modules. We also at # times mix those child modules in instead of calling them here. # # @author Zachary Patten <zachary AT jovelabs DOT com> module Utility autoload :CIDR, 'testlab/utility/cidr' autoload :Logger, 'testlab/utility/logger' autoload :Misc, 'testlab/utility/misc' extend TestLab::Utility::CIDR extend TestLab::Utility::Logger extend TestLab::Utility::Misc end end
Version data entries
52 entries across 52 versions & 1 rubygems