mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00

Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
20 lines
353 B
Ruby
20 lines
353 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/libvirt/models/compute/node'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Libvirt
|
|
class Nodes < Fog::Collection
|
|
model Fog::Compute::Libvirt::Node
|
|
|
|
def all(filter={ })
|
|
load(service.get_node_info)
|
|
end
|
|
|
|
def get
|
|
all.first
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|