xenapi 0.2.7 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY +6 -0
- data/VERSION +1 -1
- data/lib/xenapi.rb +4 -4
- data/xenapi.gemspec +2 -2
- metadata +4 -4
data/HISTORY
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
= XenApi History
|
|
2
2
|
|
|
3
|
+
=== 0.2.9 - 2011-05-20
|
|
4
|
+
* Yet another version bump due to jeweler fucking up and not releasing the right code
|
|
5
|
+
|
|
6
|
+
=== 0.2.8 - 2011-05-20
|
|
7
|
+
* Fix issue with Async calls raising NameError for missing AsyncDispatcher
|
|
8
|
+
|
|
3
9
|
=== 0.2.7 - 2011-05-09
|
|
4
10
|
* Add specific Exceptions for Xen API method errors. These are kept under XenApi::Errors.
|
|
5
11
|
* Massive internal cleanup and documentation
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.9
|
data/lib/xenapi.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module XenApi #:nodoc:
|
|
2
|
-
autoload :Client,
|
|
3
|
-
autoload :Errors,
|
|
4
|
-
autoload :Dispatcher,
|
|
5
|
-
autoload :
|
|
2
|
+
autoload :Client, File.expand_path('../xenapi/client', __FILE__)
|
|
3
|
+
autoload :Errors, File.expand_path('../xenapi/errors', __FILE__)
|
|
4
|
+
autoload :Dispatcher, File.expand_path('../xenapi/dispatcher', __FILE__)
|
|
5
|
+
autoload :AsyncDispatcher, File.expand_path('../xenapi/async_dispatcher', __FILE__)
|
|
6
6
|
end
|
data/xenapi.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{xenapi}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Geoff Garside"]
|
|
12
|
-
s.date = %q{2011-05-
|
|
12
|
+
s.date = %q{2011-05-20}
|
|
13
13
|
s.description = %q{Xen API XMLRPC Client library for working with XenServers}
|
|
14
14
|
s.email = %q{geoff+xenapi@geoffgarside.co.uk}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xenapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 9
|
|
10
|
+
version: 0.2.9
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Geoff Garside
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-05-
|
|
18
|
+
date: 2011-05-20 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: thoughtbot-shoulda
|