cicd-builder 0.9.50 → 0.9.51
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/Gemfile.lock +1 -1
- data/lib/cicd/builder/mixlib/repo/artifactory.rb +6 -4
- data/lib/cicd/builder/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: 685d6547608f67a17c5918c20cc1f32b760b2a66
|
|
4
|
+
data.tar.gz: e91d3532794169e714c4d726f7472e404a64be89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca0e34205fdd3bdaad2c4ffb10fcf3f240a1079ba2cadf40c5fe12a1d3f1ed6094ff927128d877e7d4b221a0b29f9453b57d085c4a4b4cd996da32c9ae0cdaf3
|
|
7
|
+
data.tar.gz: 01af3be57403e3abb94e5d29c7e5c86b07b4368f60c7671dcbf2fc2ad60a58489b9b16d59d8839f5e6faa1799f325d1e479d467836f9d578ccb31049cbb6cea8
|
data/Gemfile.lock
CHANGED
|
@@ -319,13 +319,15 @@ module CiCd
|
|
|
319
319
|
thread = Thread.new(){
|
|
320
320
|
yield
|
|
321
321
|
}
|
|
322
|
-
progressbar = ::ProgressBar.create({title: title, progress_mark: '=', starting_at: 0, total: limit, remainder_mark: '.', throttle_rate: 0.5})
|
|
322
|
+
progressbar = ::ProgressBar.create({title: title, progress_mark: '=', starting_at: 0, total: limit, remainder_mark: '.', throttle_rate: 0.5}) if @logger.info?
|
|
323
323
|
limit.times do
|
|
324
324
|
res = thread.join(1)
|
|
325
|
-
|
|
326
|
-
|
|
325
|
+
if @logger.info?
|
|
326
|
+
progressbar.increment
|
|
327
|
+
progressbar.total = limit
|
|
328
|
+
end
|
|
327
329
|
unless thread.alive? #or thread.stop?
|
|
328
|
-
puts ''
|
|
330
|
+
puts '' if @logger.info?
|
|
329
331
|
break
|
|
330
332
|
end
|
|
331
333
|
end
|
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.51'
|
|
8
8
|
VERSION = version unless const_defined?('VERSION')
|
|
9
9
|
major, minor, tiny = VERSION.split('.')
|
|
10
10
|
MAJOR = major unless const_defined?('MAJOR')
|