deploy-context 2.0.1.1.g34e199f → 2.0.2.1.g00ce101
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
- checksums.yaml.gz.sig +0 -0
- data/features/step_definitions/deploy-context.rb +7 -7
- data/lib/deploy-context/context/deploy.rb +1 -0
- data.tar.gz.sig +0 -0
- metadata +1 -1
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 010c29b545b275720289e8e458047bce3f5a2d8cc1e65a8cdec480c2af517354
|
4
|
+
data.tar.gz: 1a033ffcca01a64799ae3fcf949fd7e31e66a371047a69ebcede580cab951b82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75e5e6cf45c26ca18f23dd9a5509e12fcbe70c25c054d17e3805fc224955d253b539c4a460a606cfad96173013aeac08fbd370c5c6db59174a615bf32c65be5b
|
7
|
+
data.tar.gz: 034a94eb0072987ed8214be61dbd2839c0cc767cb7cfb1a2d46044af5e2a561bee67e114894117b4cea2ff42650bebf3ff5e3b8037cde5b4948ed07a8ca2c8e4
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -13,30 +13,30 @@ end
|
|
13
13
|
# end
|
14
14
|
|
15
15
|
Alors('démarrer un simple cycle de {word}') do |project_name|
|
16
|
-
context_exec [project_name, 'once'] || abort
|
16
|
+
context_exec [project_name, 'once'] || abort("#{project_name} ERROR: Issue with life cycle")
|
17
17
|
end
|
18
18
|
|
19
19
|
Alors('déployer le projet {word}') do |project_name|
|
20
|
-
context_exec [project_name, 'release'] || abort
|
20
|
+
context_exec [project_name, 'release'] || abort("#{project_name} ERROR: Issue with deploy steps")
|
21
21
|
end
|
22
22
|
|
23
23
|
Alors('tester le projet {word}') do |project_name|
|
24
|
-
context_exec [project_name, 'test'] || abort
|
24
|
+
context_exec [project_name, 'test'] || abort("#{project_name} ERROR: Issue with testing steps")
|
25
25
|
end
|
26
26
|
|
27
27
|
Étantdonnéque('le projet {word} à du code à updater') do |project_name|
|
28
|
-
context_exec [project_name, 'check_code_to_update'] || abort
|
28
|
+
context_exec [project_name, 'check_code_to_update'] || abort("#{project_name} ERROR: Issue to check updated code")
|
29
29
|
end
|
30
30
|
|
31
31
|
Alors('bumper la version du patch de {word}') do |project_name|
|
32
|
-
context_exec [project_name, 'bump'] || abort
|
32
|
+
context_exec [project_name, 'bump'] || abort("#{project_name} ERROR: Issue with bumping version")
|
33
33
|
end
|
34
34
|
|
35
35
|
Étantdonnéque('le projet {word} à la bonne version d\'installer') do |project_name|
|
36
|
-
context_exec [project_name, 'check_installed_version'] || abort
|
36
|
+
context_exec [project_name, 'check_installed_version'] || abort("#{project_name} ERROR: Issue to check installed version")
|
37
37
|
end
|
38
38
|
|
39
39
|
Étantdonnéque('le projet {word} à une nouvelle version de disponible') do |project_name|
|
40
|
-
context_exec [project_name, 'check_new_version'] || abort
|
40
|
+
context_exec [project_name, 'check_new_version'] || abort("#{project_name} ERROR: Issue to check newer version available")
|
41
41
|
end
|
42
42
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
metadata.gz.sig
CHANGED
Binary file
|