torpedo 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ * Tue Nov 1 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.5
2
+ -Require test-unit if using Ruby 1.9.2.
3
+ -Disable test-unit-ext if using Ruby 1.9.2 (currently supports Ruby 1.8.x)
4
+
1
5
  * Sat Oct 29 2011 Dan Prince <dan.prince@rackspace.com> - 1.0.4
2
6
  -Run image metadata tests last because they make the snapshot un-bootable.
3
7
  -Fixes to the resize tests.
data/README.md CHANGED
@@ -37,9 +37,9 @@ Installation
37
37
  #flavor_name:
38
38
  flavor_ref: 4
39
39
 
40
- # SSH KEYS (used to verify images which use an agent)
41
- #ssh_private_key:
42
- #ssh_public_key:
40
+ # SSH KEYS (used to verify installations which support personalities)
41
+ #ssh_private_key: <your home dir>/.ssh/id_rsa
42
+ #ssh_public_key: <your home dir>/.ssh/id_rsa.pub
43
43
 
44
44
  # KEYPAIRS (used to verify AMI style images)
45
45
  #keypair: test.pem
@@ -71,7 +71,7 @@ Run all tests with debug HTTP request response output:
71
71
 
72
72
  DEBUG=true torpedo fire
73
73
 
74
- Run all tests and output an Xunit style XML report:
74
+ Run all tests and output an XML report (Ruby 1.8.x only):
75
75
 
76
76
  torpedo fire --xml-report=FILE
77
77
 
data/Rakefile CHANGED
@@ -25,6 +25,7 @@ Jeweler::Tasks.new do |gem|
25
25
  # dependencies defined in Gemfile
26
26
  gem.add_dependency 'thor'
27
27
  gem.add_dependency 'openstack-compute', '>= 1.1.4'
28
+ gem.add_dependency 'test-unit'
28
29
  gem.add_dependency 'test-unit-ext', '>= 0.5.0'
29
30
  end
30
31
  Jeweler::RubygemsDotOrgTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.4
1
+ 1.0.5
@@ -1,4 +1,8 @@
1
- require 'test-unit-ext'
1
+ if RUBY_VERSION =~ /^1.9.*/ then
2
+ gem 'test-unit'
3
+ else
4
+ require 'test-unit-ext'
5
+ end
2
6
  require 'test/unit'
3
7
  gem 'openstack-compute', OPENSTACK_COMPUTE_VERSION
4
8
  require 'openstack/compute'
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: 31
4
+ hash: 29
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 4
10
- version: 1.0.4
9
+ - 5
10
+ version: 1.0.5
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-10-29 00:00:00 -04:00
18
+ date: 2011-11-01 00:00:00 -04:00
19
19
  default_executable: torpedo
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -82,8 +82,22 @@ dependencies:
82
82
  type: :runtime
83
83
  - !ruby/object:Gem::Dependency
84
84
  prerelease: false
85
- name: test-unit-ext
85
+ name: test-unit
86
86
  version_requirements: &id005 !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ hash: 3
92
+ segments:
93
+ - 0
94
+ version: "0"
95
+ requirement: *id005
96
+ type: :runtime
97
+ - !ruby/object:Gem::Dependency
98
+ prerelease: false
99
+ name: test-unit-ext
100
+ version_requirements: &id006 !ruby/object:Gem::Requirement
87
101
  none: false
88
102
  requirements:
89
103
  - - ">="
@@ -94,7 +108,7 @@ dependencies:
94
108
  - 5
95
109
  - 0
96
110
  version: 0.5.0
97
- requirement: *id005
111
+ requirement: *id006
98
112
  type: :runtime
99
113
  description: CLI to run functional smoke tests for OpenStack.
100
114
  email: dan.prince@rackspace.com