fastlane-plugin-ftps 0.1.29 → 0.1.31

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: 12c378c62edb93d98acdaafdee11ecad927fc9cfd51ac52d49077345bd35faba
4
- data.tar.gz: 55f8da4f94d07700bdd8e9dc25fb58c8c38b48742914d6b8f9fafddeda50eea8
3
+ metadata.gz: 67cbb251d8cca7f75bc0d8dd9ac9317fca6e93c235d84cacaa754475ed13a1fb
4
+ data.tar.gz: '0273387bbe14a90e8732323d195ebc7b5d432453b410086e13e8af81265cb04c'
5
5
  SHA512:
6
- metadata.gz: 42f4125b5f410a9a64ae76e89aec9680948850f6afe7759b004084f6fcfa3c83b2d862236eb892276008146e7939798cf653d2c9e1b3b0c7a55bc50e24cb555d
7
- data.tar.gz: a16495fe4a53289d0cc0837438b554052d5c66f55e8979aa42c9bd73e7585414376d1440e3d5d6c37a2390e5f535015f1bb6bf71d34aea6a98ebe6e4e3a7e5d6
6
+ metadata.gz: 692986228aaefdc8756739637bb7b57e611ad88276a324e3d411e6c4729615c081bb64b8480454b0ce0f2b70dd1979997c339c73c83f55cde3e1d6414c39670b
7
+ data.tar.gz: fe1ffa774baf577cc9ab24c563a9c74d9ed1be4a260d99f60020e2ab01ba49eb787292af69eb5ce793bf8f36e9b02ac6e96b07f89d477591cb52199068164d88
@@ -15,22 +15,30 @@ module Fastlane
15
15
  end
16
16
 
17
17
  def self.ensure_remote_path(ftp, folder)
18
+ UI.success("Ensure Remote Path")
18
19
  home = ftp.pwd # zapamiętaj katalog startowy
19
20
  parts = folder.split('/')
20
- current_path = '.'
21
+ current_path = '~'
21
22
  parts.each do |part|
22
23
  # Pomijamy puste elementy (np. jeśli folder zaczyna się od '/')
23
24
  next if part.empty?
24
25
 
25
26
  current_path = "#{current_path}/#{part}"
26
27
  begin
28
+ UI.success("Current Path chdir #{current_path} begin")
27
29
  ftp.chdir(current_path)
30
+ UI.success("Current Path chdir #{current_path} end")
28
31
  rescue Net::FTPPermError
32
+ UI.success("Rescue mkdir #{part}")
29
33
  ftp.mkdir(part)
34
+ UI.success("Rescue chdir #{current_path}")
30
35
  ftp.chdir(current_path)
36
+ UI.success("Rescue chdir end")
31
37
  end
32
38
  end
39
+ UI.success("chdir home begin")
33
40
  ftp.chdir(home)
41
+ UI.success("chdir home end")
34
42
  end
35
43
 
36
44
  def self.connect_ftp(params)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Ftps
3
- VERSION = '0.1.29'
3
+ VERSION = '0.1.31'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-ftps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.29
4
+ version: 0.1.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Dziuryk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-05 00:00:00.000000000 Z
11
+ date: 2025-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-progressbar