vmpooler/lib/vmpooler/providers.rb
Glenn Sarti ba686e3c0a (maint) Update VMPooler files with fixes for Rubocop violations
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.
2017-05-17 13:52:28 -07:00

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