Sha256: 9ea311ecb52473af363fd3c3e023fda364c2e9dbc558ad042cdb3ca33e760130
Contents?: true
Size: 869 Bytes
Versions: 44
Compression:
Stored size: 869 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 :Chef, 'testlab/provisioners/chef' 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
Version data entries
44 entries across 44 versions & 1 rubygems