lib/rspec-system/node_set.rb in rspec-system-1.3.0 vs lib/rspec-system/node_set.rb in rspec-system-1.4.0

- old
+ new

@@ -3,15 +3,15 @@ class NodeSet # Returns a NodeSet object. # # @return [RSpecSystem::NodeSet::Base] returns an object based on the Base # abstract class. - def self.create(setname, config, virtual_env, options) + def self.create(setname, config, virtual_env, custom_prefabs_path, options) case(virtual_env) when 'vagrant' - RSpecSystem::NodeSet::Vagrant.new(setname, config, options) + RSpecSystem::NodeSet::Vagrant.new(setname, config, custom_prefabs_path, options) when 'vsphere' - RSpecSystem::NodeSet::Vsphere.new(setname, config, options) + RSpecSystem::NodeSet::Vsphere.new(setname, config, custom_prefabs_path, options) else raise "Unsupported virtual environment #{virtual_env}" end end end