/usr/share/doc/libvirt-ruby1.8/README is in libvirt-ruby1.8 0.0.7-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ruby-libvirt
============
Ruby bindings for libvirt (http://libvirt.org)
Usage
-----
In your ruby code, do a "require 'libvirt'"; to obtain a connection, use
'Libvirt::open' or 'Libvirt::openReadOnly'. See tests/*.rb for more
examples.
Hacking
-------
On a Fedora machine, run
yum install libvirt-devel ruby-devel rubygem-rake
and then
rake build
rake test
To run against the checkout, make sure you set RUBYLIB (assuming DIR is the
toplevel of your source checkout):
export RUBYLIB=$dir/lib:$dir/ext/libvirt
ruby -rlibvirt -e 'puts Libvirt::version("xen")[0]'
|