cicd-builder 0.9.16 → 0.9.17
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/mixlib/repo.rb +4 -1
- data/lib/cicd/builder/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NGQ3OTRjYTVmZGRlNzhjMGJmZGNkYjk4YzdmMTFmNjE0YzlhNDgxOQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OWY3MWEyYzgxNjQyMzlhNjA2YmFjN2FkYjNmOTk0MzA5NDA0YWFiNg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzhjYmRmYzYwMjkyZmQzZjc0ZjQzMDhjZmFhZTQ2MzQ4Y2UzNDA4OTUyY2Q5
|
|
10
|
+
MjBjODMxOGEzODg3MDdiYTFjMzg0ZTlkNDE2OWYyZTY2YTRjOTA0OWE1ZThi
|
|
11
|
+
NmExZjIyZDVhZGFiNTU5MWY1NDc5NzliYTUxZDU2ODBkMjA4OWI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
OThjMTI3OWI4YzA5YTYzNjg5OGE5ZGQ2MGVlOWI0ZmY4NWM1MDQyNGZkMThi
|
|
14
|
+
OWI5NTk1NzVjNGZlOWVhNzEyZGQxYzQ1NWI2NmY0NzZiZjg0YzI0OTdhNWVj
|
|
15
|
+
MDU5MzBjYzVmNDlhZGVhZTliZjkzNDQwMDM4Y2U4MGQ3ZjExYTc=
|
|
@@ -281,7 +281,10 @@ module CiCd
|
|
|
281
281
|
end
|
|
282
282
|
begin
|
|
283
283
|
resp = s3_obj.write(:data => json_s)
|
|
284
|
-
|
|
284
|
+
|
|
285
|
+
@logger.info "Inventory URL: #{s3_obj.public_url}"
|
|
286
|
+
|
|
287
|
+
case resp.class.name
|
|
285
288
|
when %r'^AWS::S3::(S3Object|ObjectVersion)'
|
|
286
289
|
return 0
|
|
287
290
|
else
|
data/lib/cicd/builder/version.rb
CHANGED
|
@@ -4,7 +4,7 @@ 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.
|
|
7
|
+
version = '0.9.17'
|
|
8
8
|
VERSION = version unless const_defined?('VERSION')
|
|
9
9
|
major, minor, tiny = VERSION.split('.')
|
|
10
10
|
MAJOR = major unless const_defined?('MAJOR')
|