File: libvirt.rb

package info (click to toggle)
ruby-fog-libvirt 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 508 kB
  • sloc: ruby: 2,593; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'fog/core'
require 'fog/xml'
require 'fog/json'
require 'libvirt'

require File.expand_path('../libvirt/version', __FILE__)

module Fog
  module Libvirt
    extend Fog::Provider

    autoload :Compute, File.expand_path('../libvirt/compute', __FILE__)

    service(:compute, 'Compute')
  end
end