ruby-libvirt 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +16 -2
- data/Rakefile +8 -6
- data/ext/libvirt/_libvirt.c +85 -1872
- data/ext/libvirt/common.c +75 -0
- data/ext/libvirt/common.h +155 -0
- data/ext/libvirt/connect.c +392 -0
- data/ext/libvirt/connect.h +12 -0
- data/ext/libvirt/domain.c +1606 -0
- data/ext/libvirt/domain.h +8 -0
- data/ext/libvirt/extconf.rb +30 -1
- data/ext/libvirt/interface.c +259 -0
- data/ext/libvirt/interface.h +6 -0
- data/ext/libvirt/network.c +338 -0
- data/ext/libvirt/network.h +6 -0
- data/ext/libvirt/nodedevice.c +333 -0
- data/ext/libvirt/nodedevice.h +6 -0
- data/ext/libvirt/nwfilter.c +206 -0
- data/ext/libvirt/nwfilter.h +6 -0
- data/ext/libvirt/secret.c +288 -0
- data/ext/libvirt/secret.h +6 -0
- data/ext/libvirt/storage.c +825 -0
- data/ext/libvirt/storage.h +6 -0
- data/tests/tc_connect.rb +1 -1
- data/tests/test_conn.rb +53 -0
- data/tests/test_domain.rb +165 -0
- data/tests/test_interface.rb +35 -0
- data/tests/test_network.rb +40 -0
- data/tests/test_nodedevice.rb +23 -0
- data/tests/test_nwfilter.rb +28 -0
- data/tests/test_open.rb +23 -0
- data/tests/test_secret.rb +33 -0
- data/tests/test_storage.rb +49 -0
- metadata +58 -14
- data/ext/libvirt/extconf.h +0 -6
metadata
CHANGED
@@ -1,19 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-libvirt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 23
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
- 0
|
10
|
+
version: 0.2.0
|
5
11
|
platform: ruby
|
6
|
-
authors:
|
7
|
-
|
8
|
-
autorequire:
|
12
|
+
authors:
|
13
|
+
- David Lutterkort, Chris Lalancette
|
14
|
+
autorequire:
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2010-11-05 00:00:00 -04:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
16
|
-
description:
|
22
|
+
description: |
|
23
|
+
Provides bindings for libvirt.
|
24
|
+
|
17
25
|
email: libvir-list@redhat.com
|
18
26
|
executables: []
|
19
27
|
|
@@ -28,36 +36,72 @@ files:
|
|
28
36
|
- NEWS
|
29
37
|
- README.rdoc
|
30
38
|
- lib/libvirt.rb
|
39
|
+
- ext/libvirt/common.c
|
40
|
+
- ext/libvirt/common.h
|
41
|
+
- ext/libvirt/nwfilter.c
|
42
|
+
- ext/libvirt/network.c
|
43
|
+
- ext/libvirt/nwfilter.h
|
44
|
+
- ext/libvirt/connect.h
|
45
|
+
- ext/libvirt/nodedevice.c
|
46
|
+
- ext/libvirt/storage.c
|
31
47
|
- ext/libvirt/_libvirt.c
|
32
|
-
- ext/libvirt/
|
48
|
+
- ext/libvirt/network.h
|
49
|
+
- ext/libvirt/nodedevice.h
|
50
|
+
- ext/libvirt/connect.c
|
51
|
+
- ext/libvirt/storage.h
|
52
|
+
- ext/libvirt/domain.h
|
53
|
+
- ext/libvirt/secret.c
|
54
|
+
- ext/libvirt/domain.c
|
55
|
+
- ext/libvirt/interface.c
|
56
|
+
- ext/libvirt/secret.h
|
57
|
+
- ext/libvirt/interface.h
|
33
58
|
- ext/libvirt/extconf.rb
|
34
|
-
- tests/
|
59
|
+
- tests/test_interface.rb
|
35
60
|
- tests/tc_connect.rb
|
36
|
-
|
61
|
+
- tests/test_network.rb
|
62
|
+
- tests/node.xml
|
63
|
+
- tests/test_domain.rb
|
64
|
+
- tests/test_open.rb
|
65
|
+
- tests/test_secret.rb
|
66
|
+
- tests/test_nodedevice.rb
|
67
|
+
- tests/test_storage.rb
|
68
|
+
- tests/test_conn.rb
|
69
|
+
- tests/test_nwfilter.rb
|
70
|
+
has_rdoc: true
|
37
71
|
homepage: http://libvirt.org/ruby/
|
72
|
+
licenses: []
|
73
|
+
|
38
74
|
post_install_message:
|
39
75
|
rdoc_options: []
|
40
76
|
|
41
77
|
require_paths:
|
42
78
|
- lib
|
43
79
|
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
44
81
|
requirements:
|
45
82
|
- - ">="
|
46
83
|
- !ruby/object:Gem::Version
|
84
|
+
hash: 53
|
85
|
+
segments:
|
86
|
+
- 1
|
87
|
+
- 8
|
88
|
+
- 1
|
47
89
|
version: 1.8.1
|
48
|
-
version:
|
49
90
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
50
92
|
requirements:
|
51
93
|
- - ">="
|
52
94
|
- !ruby/object:Gem::Version
|
95
|
+
hash: 3
|
96
|
+
segments:
|
97
|
+
- 0
|
53
98
|
version: "0"
|
54
|
-
version:
|
55
99
|
requirements: []
|
56
100
|
|
57
|
-
rubyforge_project:
|
58
|
-
rubygems_version: 1.
|
101
|
+
rubyforge_project: None
|
102
|
+
rubygems_version: 1.3.7
|
59
103
|
signing_key:
|
60
|
-
specification_version:
|
104
|
+
specification_version: 3
|
61
105
|
summary: Ruby bindings for LIBVIRT
|
62
106
|
test_files: []
|
63
107
|
|