Sha256: e73369f4b3e32a1ec87f00afb54edb3afd43f937e47b13ca5db5241cac05e153
Contents?: true
Size: 575 Bytes
Versions: 18
Compression:
Stored size: 575 Bytes
Contents
class TestLab # Provisioner Error Class class ProvisionerError < TestLabError; end # Provisioner Class # # @author Zachary Patten <zachary AT jovelabs DOT com> class Provisioner autoload :Shell, 'testlab/provisioners/shell' autoload :OmniBus, 'testlab/provisioners/omnibus' autoload :OmniTruck, 'testlab/provisioners/omnitruck' class << self # Returns the path to the gems provisioner templates def template_dir File.join(TestLab.gem_dir, "lib", "testlab", "provisioners", "templates") end end end end
Version data entries
18 entries across 18 versions & 1 rubygems