Sha256: a0935f3309680d217e6ca4b7622c9644dfcbb80398b2b0baba2acf45198b7c14

Contents?: true

Size: 306 Bytes

Versions: 1

Compression:

Stored size: 306 Bytes

Contents

module Libvirt
  module Ruby
    module Network
      extend Libvirt::Ruby::Util
      extend FFI::Library

      begin
        ffi_lib "libvirt.so.0"
      rescue LoadError
        raise Libvirt::Ruby::Exceptions::MissingLib
      end

      def self.klass
        "virNetwork"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
libvirt-ruby-0.0.2 lib/libvirt-ruby/network.rb