cicd-builder 0.9.10 → 0.9.11
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 +8 -8
- data/lib/cicd/builder.rb +1 -1
- data/lib/cicd/builder/version.rb +7 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzA2MGVjN2YxM2JiMzkyYzE4MDRiZTlhMTE5NmQ0YzFkYjE3N2E5Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTI1YjAxMWY0NjcyNmJiMWE1MmI0NjNmOGFlM2NkOGNmMzJmYWM0OQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTZjZmUyZTc5MGU1NjI2YzYxYWY5NzQ2MTE2N2IxMmE1OWVmMGIzOTdjOWNk
|
10
|
+
NzllOWFiNzdlOWVlNWYyNmViZDQwMjE0ZjJmYWI0MGIxNTY1NmZlNDM2YjQ4
|
11
|
+
YTljMmIyYmNkZDFlOTg2OWQ1Y2YzYTNlOTFkYmU2ZTQyNDRmMzg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzA1ZTg3NTY2ZWFiODU0YjQxMzE5MzQxZTc1MmIyM2VlNTgzMjBlNGRlM2Y1
|
14
|
+
MTM3M2M1MTkyYjMxZjQyM2NiYTdlMWFkMTVlOTI3N2UyNWFhOTBlOGRkNDBm
|
15
|
+
OGFhMjk1N2Y2ZjkyOWI2MTQwYWMxZDAyNDgxMDdlNTEwOGU1NzE=
|
data/lib/cicd/builder.rb
CHANGED
@@ -55,7 +55,7 @@ module CiCd
|
|
55
55
|
|
56
56
|
# ---------------------------------------------------------------------------------------------------------------
|
57
57
|
def run()
|
58
|
-
$stdout.write("CiCd::Builder v#{
|
58
|
+
$stdout.write("CiCd::Builder v#{VERSION}\n")
|
59
59
|
parseOptions()
|
60
60
|
|
61
61
|
ret = checkEnvironment()
|
data/lib/cicd/builder/version.rb
CHANGED
@@ -4,9 +4,12 @@ module CiCd
|
|
4
4
|
# file = File.expand_path("#{File.dirname(__FILE__)}/../../../VERSION")
|
5
5
|
# lines = File.readlines(file)
|
6
6
|
# version = lines[0]
|
7
|
-
version = '0.9.
|
8
|
-
VERSION = version
|
9
|
-
|
10
|
-
|
7
|
+
version = '0.9.11'
|
8
|
+
VERSION = version unless const_defined?('VERSION')
|
9
|
+
major, minor, tiny = VERSION.split('.')
|
10
|
+
MAJOR = major unless const_defined?('MAJOR')
|
11
|
+
MINOR = minor unless const_defined?('MINOR')
|
12
|
+
TINY = tiny unless const_defined?('TINY')
|
13
|
+
PATCH = TINY unless const_defined?('PATCH')
|
11
14
|
end
|
12
15
|
end
|