Class: Kitchen::Driver::VmpoolStores::FileStore
- Inherits:
-
FileBaseStore
- Object
- BaseStore
- FileBaseStore
- Kitchen::Driver::VmpoolStores::FileStore
- Defined in:
- lib/kitchen/driver/vmpool_stores/file_store.rb
Instance Attribute Summary
Attributes inherited from FileBaseStore
Instance Method Summary collapse
-
#initialize(options = nil) ⇒ FileStore
constructor
A new instance of FileStore.
Methods inherited from FileBaseStore
#mark_unused, #take_pool_member
Methods inherited from BaseStore
#mark_unused, #take_pool_member
Constructor Details
#initialize(options = nil) ⇒ FileStore
Returns a new instance of FileStore.
8 9 10 11 12 |
# File 'lib/kitchen/driver/vmpool_stores/file_store.rb', line 8 def initialize( = nil) raise ArgumentError unless ['pool_file'] ||= { 'pool_file' => 'vmpool.yaml' } @pool_file = ['pool_file'] end |