mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
This commit updates vmpooler.rb, api.rb and providers.rb with style changes as per rubocop style violations. This commit also updates the rubocop configuration to always use LF line endings even on Windows as rubocop was expecting CRLF even though git is configured for LF.
7 lines
196 B
Ruby
7 lines
196 B
Ruby
%w[base dummy vsphere].each do |lib|
|
|
begin
|
|
require "vmpooler/providers/#{lib}"
|
|
rescue LoadError
|
|
require File.expand_path(File.join(File.dirname(__FILE__), 'providers', lib))
|
|
end
|
|
end
|