canzea 0.1.142 → 0.1.143
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/lib/canzea/version.rb +1 -1
- data/lib/plan-step-class.rb +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93e6f843357e22f5cdc4be83415abfeaf2af1bcd
|
4
|
+
data.tar.gz: 3158dcdc0308f5a2308c4992f5915b762ca3ee9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49a264ff3f15f698cbb125ae7a3c6fa5bbaff6b23c017c7f0a7f7862291e304ba971d3b56d9f7c0053e51eea5d36a2f25e0c34266997d716a67aec5210f62250
|
7
|
+
data.tar.gz: ac49ac5ba78a4d548fcccef30cdb55398fa77a55d59326d4c873b9c30c6cf5e87e243f18d160a99754490f11c8c8dd2c130f62a877cd2a4fdc347282a8d5a26a
|
data/lib/canzea/version.rb
CHANGED
data/lib/plan-step-class.rb
CHANGED
@@ -4,6 +4,7 @@ require 'trace-component'
|
|
4
4
|
require 'pathname'
|
5
5
|
require 'helper-run-class'
|
6
6
|
require 'prepare-environment'
|
7
|
+
require 'commands/push-config'
|
7
8
|
|
8
9
|
class PlanStep
|
9
10
|
def initialize ()
|
@@ -124,6 +125,15 @@ class PlanStep
|
|
124
125
|
lines = n.run cmd, start, lines - 1, true, ref
|
125
126
|
end
|
126
127
|
|
128
|
+
if ENV.has_key? ECOSYSTEM_CONFIG_GIT
|
129
|
+
log "-- Writing data to ecosystem git"
|
130
|
+
adef = {
|
131
|
+
"ES_ROLE" => role,
|
132
|
+
"ES_SOLUTION" => solution
|
133
|
+
}
|
134
|
+
h = HelperRun.new false
|
135
|
+
h.run "ecosystem", "analyze-solution", JSON.generate(adef)
|
136
|
+
end
|
127
137
|
end
|
128
138
|
rescue => exception
|
129
139
|
@log.error(cmd)
|