train-vsphere 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
- data/Gemfile +0 -0
- data/README.md +0 -0
- data/lib/train-vsphere/connection.rb +0 -0
- data/lib/train-vsphere/platform.rb +0 -0
- data/lib/train-vsphere/transport.rb +0 -0
- data/lib/train-vsphere/version.rb +1 -1
- data/lib/train-vsphere.rb +0 -0
- data/train-vsphere.gemspec +14 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45a888e0295c41d0f029a3b2ac2c84a966086a271587e3d7356d908300ced712
|
4
|
+
data.tar.gz: 9521236b5c908e91f98c7c5da50658deae442a67eaf93a9270b6792bb934702d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23a03cfacc2dfe55348ee40b34d4954e3d5efddc08ca1ed58feabff92e176ea92fdd1a0023d653dc4817e9c7e14293a6b79c6f86465cce5bb67584461e2261fe
|
7
|
+
data.tar.gz: 14de4e1f2e2756d0c9caaebae1d5b624ffe5ed0170601cf1025ac929b7340fe1fd8a4492dfef733aa15a3e132974b323cb3efb27b10becb77998238ef317c9a2
|
data/Gemfile
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/train-vsphere.rb
CHANGED
File without changes
|
data/train-vsphere.gemspec
CHANGED
@@ -5,6 +5,10 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
require 'train-vsphere/version'
|
6
6
|
|
7
7
|
Gem::Specification.new do |spec|
|
8
|
+
# Importantly, all Train plugins must be prefixed with `train-`
|
9
|
+
spec.name = 'train-aws'
|
10
|
+
|
11
|
+
# It is polite to namespace your plugin under InspecPlugins::YourPluginInCamelCase
|
8
12
|
spec.name = 'train-vsphere'
|
9
13
|
spec.version = TrainPlugins::Vsphere::VERSION
|
10
14
|
spec.authors = ['Sjors Robroek']
|
@@ -14,13 +18,17 @@ Gem::Specification.new do |spec|
|
|
14
18
|
spec.homepage = 'https://github.com/srobroek/train-vsphere'
|
15
19
|
spec.license = 'Apache-2.0'
|
16
20
|
|
21
|
+
# Though complicated-looking, this is pretty standard for a gemspec.
|
22
|
+
# It just filters what will actually be packaged in the gem (leaving
|
23
|
+
# out tests, etc)
|
17
24
|
spec.files = %w{
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
25
|
+
README.md train-vsphere.gemspec Gemfile
|
26
|
+
} + Dir.glob(
|
27
|
+
'lib/**/*', File::FNM_DOTMATCH
|
28
|
+
).reject { |f| File.directory?(f) }
|
22
29
|
spec.require_paths = ['lib']
|
23
30
|
|
24
|
-
|
25
|
-
spec.add_dependency '
|
31
|
+
|
32
|
+
spec.add_dependency 'train', '~> 1.4'
|
33
|
+
spec.add_dependency 'vsphere-automation-sdk', '~> 0.1.0'
|
26
34
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: train-vsphere
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sjors Robroek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04-
|
11
|
+
date: 2019-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: train
|
@@ -72,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: '0'
|
74
74
|
requirements: []
|
75
|
-
rubygems_version: 3.0.
|
75
|
+
rubygems_version: 3.0.1
|
76
76
|
signing_key:
|
77
77
|
specification_version: 4
|
78
78
|
summary: Train Transport for vSphere
|