vmpooler/lib/vmpooler/providers/vsphere.rb
Glenn Sarti 06100ddea6 (maint) Fix rubocop violations
This commit fixes minor rubocopy violations in eleven source files.  Minor
violations are those that include formatting, single quotes, and recently added
classes.
2017-03-16 15:39:15 -07:00

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