lib/beaker-hostgenerator/hypervisor.rb in beaker-hostgenerator-1.18.1 vs lib/beaker-hostgenerator/hypervisor.rb in beaker-hostgenerator-2.0.0
- old
+ new
@@ -1,7 +1,6 @@
module BeakerHostGenerator
-
# Defines an Interface for the implementation of a hypervisor, and provides
# a static module function `create(node_info, options)` for instantiating
# the appropriate hypervisor implementation.
#
# New hypervisor implementations must define the methods in the Interface
@@ -11,10 +10,9 @@
# generation in the `BeakerHostGenerator::Generator#generate` method.
# Whenever a host specifies a specific hypervisor implementation, the
# Generator will instantiate the appropriate hypervisor via
# `BeakerHostGenerator::Hypervisor.create`.
module Hypervisor
-
# Static factory method to instantiate the appropriate hypervisor for the
# given node. If no hypervisor is specified in the node info, then the
# hypervisor specified in the options will be created. If the hypervisor is
# not a built-in implementation, then an `Unknown` instance will be used.
#