module Libvirt module Ruby module StoragePool extend Libvirt::Ruby::Util extend FFI::Library begin ffi_lib "libvirt.so.0" rescue LoadError raise Libvirt::Ruby::Exceptions::MissingLib end def self.klass "virStoragePool" end end end end