Sha256: b484945cc4f2ca3d3ce2038d694ebf7083ffa8d791ffc455e86da5ecd3d729ac
Contents?: true
Size: 584 Bytes
Versions: 92
Compression:
Stored size: 584 Bytes
Contents
class TestLab class Container module MethodMissing # Provisioner method handler # # Proxies missing methods to the containers defined provisioner, if any. def method_missing(method_name, *method_args) @ui.logger.debug { "CONTAINER METHOD MISSING: #{method_name.inspect}(#{method_args.inspect})" } if (defined?(@provisioner) && @provisioner.respond_to?(method_name)) @provisioner.send(method_name, [self, *method_args].flatten) else super(method_name, *method_args) end end end end end
Version data entries
92 entries across 92 versions & 1 rubygems