Sha256: 93fcfdf327a834ebca4428adc3b77ae5017bdd35811342169537032ae6d4a609
Contents?: true
Size: 497 Bytes
Versions: 29
Compression:
Stored size: 497 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 :Misc, 'testlab/utility/misc' extend TestLab::Utility::CIDR extend TestLab::Utility::Misc end end
Version data entries
29 entries across 29 versions & 1 rubygems