mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
This commit fixes minor rubocopy violations in eleven source files. Minor violations are those that include formatting, single quotes, and recently added classes.
15 lines
262 B
Ruby
15 lines
262 B
Ruby
module Vmpooler
|
|
class PoolManager
|
|
class Provider
|
|
class VSphere < Vmpooler::PoolManager::Provider::Base
|
|
def initialize(options)
|
|
super(options)
|
|
end
|
|
|
|
def name
|
|
'vsphere'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|