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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b45bbaca977baab3665dcf82c6bf5bf45eee8395f62a9bed78d90f4c6dd706e
4
- data.tar.gz: c8e9860f5ef0f872a4f3cd9b5246a38be4e01453cc220f3d0a4ccce390b2e54f
3
+ metadata.gz: 45a888e0295c41d0f029a3b2ac2c84a966086a271587e3d7356d908300ced712
4
+ data.tar.gz: 9521236b5c908e91f98c7c5da50658deae442a67eaf93a9270b6792bb934702d
5
5
  SHA512:
6
- metadata.gz: 8b37d7d24f7018fc0cf6b341e5b7a1fd0b97be4d9f6258cbdaf4cd32efe65210fb916f5ae2ea6da9a146e6529662d8ef51b178ecbcd6b7f6b571a7f9b9536cf7
7
- data.tar.gz: e316a66f1ad78db1ed9ba2e7cb46fe42b5b3bf577b09a6518fd0fa22aebb5f0fcec8790524090fc02426f892712b587de33ab848ade7e90c96aebcff735c42f5
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TrainPlugins
4
4
  module Vsphere
5
- VERSION = '1.0.1'
5
+ VERSION = '1.0.2'
6
6
  end
7
7
  end
data/lib/train-vsphere.rb CHANGED
File without changes
@@ -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
- README.md train-vsphere.gemspec Gemfile
19
- } + Dir.glob(
20
- 'lib/**/*', File::FNM_DOTMATCH
21
- ).reject { |f| File.directory?(f) }
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
- spec.add_dependency 'train', '~> 1.4'
25
- spec.add_dependency 'vsphere-automation-sdk', '~> 0.1.0'
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.1
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-12 00:00:00.000000000 Z
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.3
75
+ rubygems_version: 3.0.1
76
76
  signing_key:
77
77
  specification_version: 4
78
78
  summary: Train Transport for vSphere