vcloud-core 0.9.0 → 0.10.0
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.md +6 -0
- data/lib/vcloud/core/version.rb +1 -1
- data/vcloud-core.gemspec +1 -1
- metadata +5 -7
- data/lib/vcloud/fog.rb +0 -2
- data/lib/vcloud/temporary_fog_classes.rb +0 -11
data/CHANGELOG.md
CHANGED
data/lib/vcloud/core/version.rb
CHANGED
data/vcloud-core.gemspec
CHANGED
|
@@ -31,5 +31,5 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.add_development_dependency 'rspec', '~> 2.14.1'
|
|
32
32
|
s.add_development_dependency 'rubocop', '~> 0.23.0'
|
|
33
33
|
s.add_development_dependency 'simplecov', '~> 0.7.1'
|
|
34
|
-
s.add_development_dependency 'vcloud-tools-tester', '~> 0.
|
|
34
|
+
s.add_development_dependency 'vcloud-tools-tester', '~> 0.2.0'
|
|
35
35
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vcloud-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-08-
|
|
12
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fog
|
|
@@ -162,7 +162,7 @@ dependencies:
|
|
|
162
162
|
requirements:
|
|
163
163
|
- - ~>
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: 0.
|
|
165
|
+
version: 0.2.0
|
|
166
166
|
type: :development
|
|
167
167
|
prerelease: false
|
|
168
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -170,7 +170,7 @@ dependencies:
|
|
|
170
170
|
requirements:
|
|
171
171
|
- - ~>
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
|
-
version: 0.
|
|
173
|
+
version: 0.2.0
|
|
174
174
|
description: Core tools for interacting with VMware vCloud Director. Includes VCloud
|
|
175
175
|
Query, a light wrapper round the vCloud Query API.
|
|
176
176
|
email:
|
|
@@ -217,8 +217,6 @@ files:
|
|
|
217
217
|
- lib/vcloud/core/vdc.rb
|
|
218
218
|
- lib/vcloud/core/version.rb
|
|
219
219
|
- lib/vcloud/core/vm.rb
|
|
220
|
-
- lib/vcloud/fog.rb
|
|
221
|
-
- lib/vcloud/temporary_fog_classes.rb
|
|
222
220
|
- spec/integration/README.md
|
|
223
221
|
- spec/integration/core/edge_gateway_spec.rb
|
|
224
222
|
- spec/integration/core/fog/login_manual.rb
|
|
@@ -279,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
279
277
|
version: '0'
|
|
280
278
|
segments:
|
|
281
279
|
- 0
|
|
282
|
-
hash:
|
|
280
|
+
hash: -496306917479222394
|
|
283
281
|
requirements: []
|
|
284
282
|
rubyforge_project:
|
|
285
283
|
rubygems_version: 1.8.23
|
data/lib/vcloud/fog.rb
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
module Vcloud
|
|
2
|
-
module Fog
|
|
3
|
-
|
|
4
|
-
# FIXME: This is required because vCloud Core has a dependency
|
|
5
|
-
# on vCloud Tools Tester. Once vCloud Tools Tester has been
|
|
6
|
-
# updated to use the correct class, this can be removed.
|
|
7
|
-
class ModelInterface < Vcloud::Core::Fog::ModelInterface
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
end
|
|
11
|
-
end
|