fastlane-plugin-ftps 0.1.22 → 0.1.23

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: 6b4706fd9df654fc7546125d88af5baa2b84182605849e027d40974abb64995f
4
- data.tar.gz: 97b4fd28d32452fb85429e2620f64afd4eb91136853c7232f5ef55d230668e7c
3
+ metadata.gz: bf2380f1252f732ab5390d3c269975d383fbd14c8b709900e9199cc124eec50b
4
+ data.tar.gz: 126f9b207852b8211fe54d2bcecf03beb0f3043f6f26715fdf14e78b5b9cf7c7
5
5
  SHA512:
6
- metadata.gz: 3511691f826bf2a415a64ec998f14089f5768ef47c3d0fcd29b06d4eddcd072cc7cf9efd41beccc79d7ad5c6311956788c556878433ec2107ee15d8a70fda18d
7
- data.tar.gz: 934928de126bb6551db73c0ac5d921ddda8a3bdc47f30bae4da076034dc47357c753f1119e69c2fcc62e9707d1a63e2bfaaf229e8d26b1997ead077d9712d0e0
6
+ metadata.gz: 244877fc79738e519967e22982af622e305e88fcc53927e7acec7f9575d4f81a5c642698411d62a911f3fa1c5becc229c1cfbefc3b1592cf050d84adeedc96ac
7
+ data.tar.gz: d0f0e0f8dbcdd821a8756a46d9c1b29e4824e8c5af3c9f7f577ef3080cba20f899a91fcc9a8f11ac01db60a18267283f0ef6678bd96fa3268c9991e05b1c2948
@@ -75,15 +75,17 @@ module Fastlane
75
75
 
76
76
  ensure_remote_path(ftp, params[:upload_multiple][:dest])
77
77
 
78
- total_size = file_paths.reduce(0) { |sum, file_path| sum + File.size(file_path) }
79
- progressbar = ProgressBar.create(
80
- format: '%a |%b>>%i| %p%% %t',
81
- total: total_size,
82
- starting_at: 0
83
- )
78
+ # total_size = file_paths.reduce(0) { |sum, file_path| sum + File.size(file_path) }
79
+ # progressbar = ProgressBar.create(
80
+ # format: '%a |%b>>%i| %p%% %t',
81
+ # total: total_size,
82
+ # starting_at: 0
83
+ # )
84
84
 
85
85
  file_paths.each do |local_file|
86
86
  relative_path = local_file.sub(%r{\A#{Regexp.escape(base_file_path)}/?}, '')
87
+ UI.success("Successfully download #{local_file} #{base_file_path} #{relative_path}")
88
+
87
89
  dir_name = File.dirname(relative_path)
88
90
  file_name = File.basename(relative_path)
89
91
 
@@ -95,6 +97,7 @@ module Fastlane
95
97
  File.join(remote_base, dir_name)
96
98
  end
97
99
 
100
+ UI.success("Successfully ensure_remote_path #{remote_path}")
98
101
  ensure_remote_path(ftp, remote_path)
99
102
  ftp.chdir(remote_path)
100
103
  ftp.putbinaryfile(local_file, file_name)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Ftps
3
- VERSION = '0.1.22'
3
+ VERSION = '0.1.23'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-ftps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.22
4
+ version: 0.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Dziuryk