class TestLab # Provisioner Error Class class ProvisionerError < TestLabError; end # Provisioner Class # # @author Zachary Patten class Provisioner autoload :Apt, 'testlab/provisioners/apt' autoload :AptCacherNG, 'testlab/provisioners/apt_cacher_ng' autoload :Bind, 'testlab/provisioners/bind' autoload :Chef, 'testlab/provisioners/chef' autoload :NFSMount, 'testlab/provisioners/nfs_mount' autoload :Raring, 'testlab/provisioners/raring' autoload :Resolv, 'testlab/provisioners/resolv' autoload :Route, 'testlab/provisioners/route' 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