(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.
This commit is contained in:
Glenn Sarti 2017-04-04 17:08:56 -07:00
parent 2e255a5a43
commit ba686e3c0a
4 changed files with 9 additions and 3 deletions

View file

@ -9,6 +9,8 @@ AllCops:
- 'scripts/**/*'
- 'spec/**/*'
- 'vendor/**/*'
- Gemfile
- Rakefile
Style/Documentation:
Enabled: false
@ -58,3 +60,7 @@ Style/ConditionalAssignment:
Next:
Enabled: false
# Enforce LF line endings, even when on Windows
Style/EndOfLine:
EnforcedStyle: lf