torpedo 1.0.7 → 1.0.8
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/CHANGELOG +4 -0
- data/VERSION +1 -1
- data/lib/torpedo/compute/helper.rb +3 -1
- data/lib/torpedo.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
* Fri Nov 11 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.8
|
|
2
|
+
-Use the latest version of the openstack-compute unless a specific
|
|
3
|
+
version is specified in the config file.
|
|
4
|
+
|
|
1
5
|
* Wed Nov 2 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.7
|
|
2
6
|
-Add support for NOVA_REGION_NAME and NOVA_PROJECT_ID.
|
|
3
7
|
-Remove dependency on test-unit-ext.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.8
|
|
@@ -2,7 +2,9 @@ if RUBY_VERSION =~ /^1.9.*/ then
|
|
|
2
2
|
gem 'test-unit'
|
|
3
3
|
end
|
|
4
4
|
require 'test/unit'
|
|
5
|
-
|
|
5
|
+
if OPENSTACK_COMPUTE_VERSION
|
|
6
|
+
gem 'openstack-compute', OPENSTACK_COMPUTE_VERSION
|
|
7
|
+
end
|
|
6
8
|
require 'openstack/compute'
|
|
7
9
|
|
|
8
10
|
module Torpedo
|
data/lib/torpedo.rb
CHANGED
|
@@ -23,7 +23,7 @@ FLAVOR_NAME=configs['flavor_name']
|
|
|
23
23
|
FLAVOR_REF_RESIZE=configs['flavor_ref_resize']
|
|
24
24
|
FLAVOR_NAME_RESIZE=configs['flavor_name_resize']
|
|
25
25
|
|
|
26
|
-
OPENSTACK_COMPUTE_VERSION=configs['openstack_compute_version']
|
|
26
|
+
OPENSTACK_COMPUTE_VERSION=configs['openstack_compute_version']
|
|
27
27
|
|
|
28
28
|
module Torpedo
|
|
29
29
|
class Tasks < Thor
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: torpedo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 7
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 8
|
|
10
|
+
version: 1.0.8
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Dan Prince
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-11-
|
|
18
|
+
date: 2011-11-11 00:00:00 -05:00
|
|
19
19
|
default_executable: torpedo
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|