kubes 0.7.3 → 0.7.4
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/CHANGELOG.md +3 -0
- data/lib/kubes/compiler/decorator/base.rb +2 -2
- data/lib/kubes/version.rb +1 -1
- 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: 4af2cf517b3700069f8a144a3f5baf8daa06622b2eb01233010e7bb5c767d9f5
|
|
4
|
+
data.tar.gz: 42db274bfee2d38aa21487f2ffec104496174f7bbaff124437e2dd0807493708
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7a6237881ee0e3bf0e87eb71badacb44be99b57f422a8ee703f475a5dc433c13b4ec4425018a40fbf869dca72253d32211edc7f04cf90d78496422370a9e81f
|
|
7
|
+
data.tar.gz: dbea974415833b5d340ca6f02dfc2b6d9557eb7b461f33ac6775cafcec7b9a05523a7944df54b53ed3a05aba31bb9c67520c3a887bb3aac1273051e59977b902
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.7.4] - 2021-03-02
|
|
7
|
+
- [#46](https://github.com/boltops-tools/kubes/pull/46) call run method to respect config.suffix_hash
|
|
8
|
+
|
|
6
9
|
## [0.7.3] - 2020-12-24
|
|
7
10
|
- [#44](https://github.com/boltops-tools/kubes/pull/44) require singleton
|
|
8
11
|
|
|
@@ -12,9 +12,9 @@ module Kubes::Compiler::Decorator
|
|
|
12
12
|
|
|
13
13
|
def result
|
|
14
14
|
if @data.key?(Kubes::Compiler::Dsl::Core::Blocks)
|
|
15
|
-
@data.results.each { |k,v|
|
|
15
|
+
@data.results.each { |k,v| run(v) } # returns nil
|
|
16
16
|
else
|
|
17
|
-
|
|
17
|
+
run # processes and returns @data
|
|
18
18
|
end
|
|
19
19
|
@data # important to return @data so we keep the original @data structure: Blocks or Hash
|
|
20
20
|
end
|
data/lib/kubes/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kubes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -786,7 +786,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
786
786
|
- !ruby/object:Gem::Version
|
|
787
787
|
version: '0'
|
|
788
788
|
requirements: []
|
|
789
|
-
rubygems_version: 3.
|
|
789
|
+
rubygems_version: 3.2.5
|
|
790
790
|
signing_key:
|
|
791
791
|
specification_version: 4
|
|
792
792
|
summary: 'Kubernetes Deployment Tool: build docker image, compile Kubernetes YAML
|