fastlane-plugin-repack_ios 0.2.2 → 1.0.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dde60a805cba0d53f2d15ebefca7a29fa1bc3fbe7a2bfc93a06affe09bbf2293
|
4
|
+
data.tar.gz: e5bcc5536699d2bed2170abfab0ed52596b70aa4c7cbb172ea826185ffcdd296
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5cb9722aad88f3d020972917bf795348ba30cae22d29d067dd75985f64ab62fb91ec80e8826a8994be3592b807047be39f0ed2073775572b907876bf4d7eee8
|
7
|
+
data.tar.gz: 87b57c9c8459bcdcba815c383d49f98058eee12c9c16a062925a73f540e460f4e12713130b9308a0c81da46cf174cde11f9b35c222f795c8b8535c7724500676
|
data/README.md
CHANGED
@@ -24,7 +24,7 @@ You can use this plugin to modify your react-native js bundle without re-compili
|
|
24
24
|
The only requires arguments are *ipa* path for the pre-built package and *contents* path for the resources that would like to replace. Basic usage as follows:
|
25
25
|
|
26
26
|
```ruby
|
27
|
-
repack_ios({ ipa: "./build/ios/TestApp.ipa", contents: "./build/react-native/" })
|
27
|
+
repack_ios({ ipa: "./build/ios/TestApp.ipa", output_name: "TestApp", contents: "./build/react-native/" })
|
28
28
|
```
|
29
29
|
|
30
30
|
You can also specify additional parameters to `repack_ios` action. Eg.
|
@@ -44,6 +44,7 @@ You can also specify additional parameters to `repack_ios` action. Eg.
|
|
44
44
|
| Key | Description | Default |
|
45
45
|
| ------------- |-----------------------| --------|
|
46
46
|
| ipa | Path to your original ipa file to modify | *Required* |
|
47
|
+
| output_name | The product name of the Xcode target | *Required* |
|
47
48
|
| contents | Path for the new contents | *Required* |
|
48
49
|
| app_identifier | The bundle identifier of your app | Default value read from Appfile's app_identifier key |
|
49
50
|
| entitlements | Path to the entitlement file to use, e.g. `myApp/MyApp.entitlements`| Default value can be resolved from *sigh* |
|
@@ -16,7 +16,7 @@ module Fastlane
|
|
16
16
|
UI.message("Parameter Contents Path: #{params[:contents]}")
|
17
17
|
UI.message("Parameter IPA Path: #{params[:ipa]}")
|
18
18
|
|
19
|
-
if params[:ipa].nil?
|
19
|
+
if params[:ipa].nil? || params[:output_name].nil?
|
20
20
|
UI.important("Parameter ipa is empty, trying to resolve Gym configuration...")
|
21
21
|
|
22
22
|
Gym.config = FastlaneCore::Configuration.create(Gym::Options.available_options, {})
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-repack_ios
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Omer Duzyol
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|