train-kubernetes 0.1.5 → 0.1.6
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/README.md +1 -1
- data/lib/train-kubernetes/version.rb +1 -1
- data/train-kubernetes.gemspec +2 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: faf420c22d9eb580f5344f04af243d21b734195305b653ac60588a200b986557
|
|
4
|
+
data.tar.gz: 631dbf7f1b8006cf0d41b4e11457e7821283b7d96bdecbbfbc1f3b4a2d5128bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54cefa2bf1f7e85fcd8a018dff9093c1de1a7bb20bceb123c595e439741f969baba9484f735f3bad7d39ad1a3e4d50cef1dea0265d064a257021801d1dc820d4
|
|
7
|
+
data.tar.gz: 6b754a9da1e579667ee32b48f0b8a208a4ead1da47c5333e53d2ff95cc929a31792ad13368b27dd3ca170cb3050d11350801c3af196700d15f59425415152ac3
|
data/README.md
CHANGED
|
@@ -81,7 +81,7 @@ If you run into issues installing via `inspec plugin install train-kubernetes`,
|
|
|
81
81
|
|
|
82
82
|
* Try running `gem install train-kubernetes` before `inspec plugin install train-kubernetes`.
|
|
83
83
|
* Ensure the `~/.inspec/plugins.json` has `"0.1.3"` and not `"= 0.1.3"` for the `version` value. Modify it by hand if needed.
|
|
84
|
-
* Ensure you can cleanly install the `k8s-
|
|
84
|
+
* Ensure you can cleanly install the `k8s-ruby` gem version `0.10.4` or greater. e.g. `gem install k8s-ruby -v 0.10.4`
|
|
85
85
|
* Ensure that only one version of the `excon` gem is installed. e.g. `gem list | grep excon`. If you see two versions, `gem uninstall excon` and remove the older version.
|
|
86
86
|
|
|
87
87
|
## Reporting Issues
|
data/train-kubernetes.gemspec
CHANGED
|
@@ -22,6 +22,8 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
spec.homepage = 'https://github.com/bgeesaman/train-kubernetes'
|
|
23
23
|
spec.license = 'Apache-2.0'
|
|
24
24
|
|
|
25
|
+
spec.required_ruby_version = '>= 2.4'
|
|
26
|
+
|
|
25
27
|
# Though complicated-looking, this is pretty standard for a gemspec.
|
|
26
28
|
# It just filters what will actually be packaged in the gem (leaving
|
|
27
29
|
# out tests, etc)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: train-kubernetes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brad Geesaman
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: k8s-ruby
|
|
@@ -58,7 +58,7 @@ homepage: https://github.com/bgeesaman/train-kubernetes
|
|
|
58
58
|
licenses:
|
|
59
59
|
- Apache-2.0
|
|
60
60
|
metadata: {}
|
|
61
|
-
post_install_message:
|
|
61
|
+
post_install_message:
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
64
64
|
- lib
|
|
@@ -66,15 +66,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '
|
|
69
|
+
version: '2.4'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.0.
|
|
77
|
-
signing_key:
|
|
76
|
+
rubygems_version: 3.0.8
|
|
77
|
+
signing_key:
|
|
78
78
|
specification_version: 4
|
|
79
79
|
summary: Train Kubernetes
|
|
80
80
|
test_files: []
|