spline 0.0.18 → 0.0.19
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/spline/templates/definitions/process.tt +2 -1
- data/lib/spline/templates/definitions/step.tt +2 -1
- data/lib/spline/templates/samples/my_first_step.tt +1 -3
- data/lib/spline/templates/samples/my_process.tt +1 -3
- data/lib/spline/templates/samples/my_second_step.tt +1 -3
- data/lib/spline/version.rb +1 -1
- 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: 8ecc811795ffdc8bc9c95a9a8d440cf2ee1d972d
|
|
4
|
+
data.tar.gz: 2c8703a6080a4435d1a388b7802ca4e80637c797
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fd964f467fd6abe86e5e5fdf1d68630e08963c59f49caf660a70e5d61d7f6cf51ebd27d39b0e5a06426f02baba342855cd1b7ad6dc613b009ec9d42bd126421
|
|
7
|
+
data.tar.gz: d1479bb52d69de373abf25fdb39f39394051d5abd392016a80a4245dc6f99bccfb5f00251de81e740551ba9b9fa8ff5bc50b8e5e2a2a6c6ed53b84473f87cb73
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
#step method with description as first argument, block as second arg
|
|
3
|
-
|
|
4
2
|
step "this is an example step" { |s|
|
|
5
3
|
|
|
6
4
|
s.name "my first step"
|
|
@@ -8,4 +6,4 @@ step "this is an example step" { |s|
|
|
|
8
6
|
s.attributes ["repo", "example_attribute"]
|
|
9
7
|
s.finishes ["success", "failure"]
|
|
10
8
|
|
|
11
|
-
}
|
|
9
|
+
}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
#step method with description as first argument, block as second arg
|
|
3
|
-
|
|
4
2
|
step "this is an example step" { |s|
|
|
5
3
|
|
|
6
4
|
s.name "my second step"
|
|
@@ -8,4 +6,4 @@ step "this is an example step" { |s|
|
|
|
8
6
|
s.attributes ["repo", "example_attribute"]
|
|
9
7
|
s.finishes ["success", "failure"]
|
|
10
8
|
|
|
11
|
-
}
|
|
9
|
+
}
|
data/lib/spline/version.rb
CHANGED