fastlane-plugin-rearchive 1.0.1 → 1.0.3

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: 07b36f4705fba17177e7fcfe57534453d40939f36f1ca13e9450b3ad64a8bede
4
- data.tar.gz: 331f2ddaec7d48f6da97b352acbf98d499754e6635c01d62c90ab81c14802da0
3
+ metadata.gz: 22b06b4409ad6bb3fef8149e29d0ec8a67c864a573d212263ca9e89f558c9552
4
+ data.tar.gz: 90402ea9f501271881ca6b2c476202e17dc4ec085bcf6cf331eeca5c77a6c789
5
5
  SHA512:
6
- metadata.gz: 040d78db5848930903337beae05e89604ba90c964c26b0d5e12560ccd45fb4b66af6f3b196b4659f8096956c259535a0dc75bfeb7c92fa9f02c13226ae385ecd
7
- data.tar.gz: b76b6f0d6a86895cc23470ab6f5b848711d81bf24f1616bca7adb31f0b10336aad610283fbef94b9133a11bac8f0bac487078643cd587e6e26acd698d6fdf5d6
6
+ metadata.gz: b49923725105b9b8a2c509a856c8b5c121a2ac5bf6f4d0e6cbcab1333188ca49d7977a0ef7ab16d647f4efd9b25ea8eed0084caaa1668564273c9c2589a5d254
7
+ data.tar.gz: 4f54560ef75b7127be84dd29617190533c575297ef6c0c37bfad225480f4b3c9b2712cbbe78c35ca4c2fc65bcb8bc89bddb696540e065f6803fed29125224617
@@ -59,6 +59,7 @@ module Fastlane
59
59
  icons.each do |icon|
60
60
  relative_path = archive.app_path((icon[:target]).to_s)
61
61
  local_path = archive.local_path(relative_path)
62
+ FastlaneCore::UI.message("Copy icon from #{icon[:source].shellescape} to #{local_path.shellescape}")
62
63
  system("cp #{icon[:source].shellescape} #{local_path.shellescape}", exception: true)
63
64
  archive.replace(relative_path)
64
65
  end.map do |icon|
@@ -69,6 +70,8 @@ module Fastlane
69
70
  end
70
71
  Dir.mktmpdir do |dir|
71
72
  Dir.chdir(dir) do
73
+ FastlaneCore::UI.message("Current Directory: #{dir}")
74
+ FastlaneCore::UI.message("Iconset: #{iconset_path}")
72
75
  IO.popen(%W[
73
76
  /usr/bin/actool
74
77
  --output-format human-readable-text
@@ -131,7 +134,7 @@ module Fastlane
131
134
  description: "Display the output of commands",
132
135
  optional: true,
133
136
  default_value: false,
134
- type: [TrueClass, FalseClass])
137
+ type: Boolean)
135
138
  ]
136
139
  end
137
140
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Rearchive
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-rearchive
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - naoigcat
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-05-05 00:00:00.000000000 Z
10
+ date: 2025-03-06 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -150,7 +149,6 @@ dependencies:
150
149
  - - ">="
151
150
  - !ruby/object:Gem::Version
152
151
  version: '0'
153
- description:
154
152
  email: 17925623+naoigcat@users.noreply.github.com
155
153
  executables: []
156
154
  extensions: []
@@ -172,7 +170,6 @@ homepage: https://github.com/naoigcat/fastlane-plugin-rearchive
172
170
  licenses:
173
171
  - MIT
174
172
  metadata: {}
175
- post_install_message:
176
173
  rdoc_options: []
177
174
  require_paths:
178
175
  - lib
@@ -187,8 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
187
184
  - !ruby/object:Gem::Version
188
185
  version: '0'
189
186
  requirements: []
190
- rubygems_version: 3.4.9
191
- signing_key:
187
+ rubygems_version: 3.6.3
192
188
  specification_version: 4
193
189
  summary: Modify files inside ipa/xcarchive for publishing multiple configurations
194
190
  without rearchiving.