pantograph 0.1.19 → 0.1.20
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc48691817df39fe0e1de974c911e07e644d5520e600930760ee74d17a007a2c
|
|
4
|
+
data.tar.gz: '039ef398ab45aac5ae0d5511180cd5e5b7698d79b0b3d2532691513dc1124d46'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f06cdce5c6329962c50c7970a919f17a42fdd577b863b9f1519929eaf177db0a6d209e2b780c0448a7f15e471616c140f50595f8b1fb920095c53317c18be1ce
|
|
7
|
+
data.tar.gz: 0abe62edf729207a96e529d34deb520ebbff1537498e5247a4446f7c55832340b60625817aa998c2c360debcdbfb86e8652d8c35a15ac96fbb2fa6dec9946ba8
|
|
@@ -13,24 +13,32 @@ module Pantograph
|
|
|
13
13
|
|
|
14
14
|
PantographCore::PantographFolder.create_folder!
|
|
15
15
|
|
|
16
|
+
self.append_lane([
|
|
17
|
+
"desc 'Runs all the tests'",
|
|
18
|
+
"lane :pipeline do",
|
|
19
|
+
" test",
|
|
20
|
+
" build",
|
|
21
|
+
" publish",
|
|
22
|
+
"end"
|
|
23
|
+
])
|
|
16
24
|
self.append_lane([
|
|
17
25
|
"desc 'Runs all the tests'",
|
|
18
26
|
"lane :test do",
|
|
19
|
-
"
|
|
27
|
+
" puts 'this is the test lane'",
|
|
20
28
|
"end"
|
|
21
29
|
])
|
|
22
30
|
|
|
23
31
|
self.append_lane([
|
|
24
32
|
"desc 'Publish new version to Artifactory'",
|
|
25
33
|
"lane :build do",
|
|
26
|
-
"
|
|
34
|
+
" sh('npm install')",
|
|
27
35
|
"end"
|
|
28
36
|
])
|
|
29
37
|
|
|
30
38
|
self.append_lane([
|
|
31
39
|
"desc 'Deploy a new version to Artifactory'",
|
|
32
40
|
"lane :publish do",
|
|
33
|
-
"
|
|
41
|
+
" next unless UI.confirm('Do you want to deploy')",
|
|
34
42
|
"end"
|
|
35
43
|
])
|
|
36
44
|
|