Sha256: f851f94dadd77f5c6ed5c3894ac6562c8315c223ccb0edbae9a65c3819ca737e
Contents?: true
Size: 927 Bytes
Versions: 6
Compression:
Stored size: 927 Bytes
Contents
class TestLab # Provisioner Error Class class ProvisionerError < TestLabError; end # Provisioner Class # # @author Zachary Patten <zachary AT jovelabs DOT com> class Provisioner autoload :Apt, 'testlab/provisioners/apt' autoload :AptCacherNG, 'testlab/provisioners/apt_cacher_ng' autoload :Bind, 'testlab/provisioners/bind' autoload :ChefGem, 'testlab/provisioners/chef_gem' autoload :OmniBus, 'testlab/provisioners/omnibus' autoload :OmniTruck, 'testlab/provisioners/omnitruck' autoload :Resolv, 'testlab/provisioners/resolv' autoload :Raring, 'testlab/provisioners/raring' autoload :Shell, 'testlab/provisioners/shell' 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
6 entries across 6 versions & 1 rubygems