pilot 0.1.2 → 0.1.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 +4 -4
- data/README.md +6 -6
- data/lib/pilot/build_manager.rb +3 -3
- data/lib/pilot/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: 547c1c1fcdee5344cad7a480858f2b19d400af2d
|
|
4
|
+
data.tar.gz: 633f8565f712ffe63b9efe8fe826f312191e76ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6d345187252c84f7ecc1de879ccecd341ce73affef1d6626b14a4815908e0a0b3ecc608aff0ca609161e18677b47ef46c89c9119b12aab5d776f2d9c7d5dc7f
|
|
7
|
+
data.tar.gz: 37de6dc21af4f5a795275ab1adbb0b41c3afcefe004286466185cc3d1c27226585fae15fc861ebd23bae4703b24453315a08e087c7fbc52f9bde1edb2dd6c1c4
|
data/README.md
CHANGED
|
@@ -75,13 +75,13 @@ pilot upload
|
|
|
75
75
|
|
|
76
76
|
This will automatically look for an `ipa` in your current directory and tries to fetch the login credentials from your [fastlane setup](https://fastlane.tools).
|
|
77
77
|
|
|
78
|
-
You'll be asked for any missing information. Additionally, you can pass all kinds of parameters
|
|
78
|
+
You'll be asked for any missing information. Additionally, you can pass all kinds of parameters:
|
|
79
79
|
|
|
80
80
|
```
|
|
81
|
-
pilot
|
|
81
|
+
pilot --help
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
You can also skip the submission of the binary, which means, the `ipa` file will only be uploaded and not distributed to testers:
|
|
85
85
|
|
|
86
86
|
```
|
|
87
87
|
pilot upload --skip_submission
|
|
@@ -92,7 +92,7 @@ pilot upload --skip_submission
|
|
|
92
92
|
- Automatically detects the bundle identifier from your `ipa` file
|
|
93
93
|
- Automatically fetch the AppID of your app based on the bundle identifier
|
|
94
94
|
|
|
95
|
-
`pilot` uses [spaceship
|
|
95
|
+
`pilot` uses [spaceship](https://spaceship.airforce) to submit the build metadata and the iTunes Transporter to upload the binary.
|
|
96
96
|
|
|
97
97
|
## List builds
|
|
98
98
|
|
|
@@ -159,7 +159,7 @@ pilot add email@invite.com
|
|
|
159
159
|
Additionally you can specify the app identifier (if necessary):
|
|
160
160
|
|
|
161
161
|
```
|
|
162
|
-
pilot add
|
|
162
|
+
pilot add email@email.com -a com.krausefx.app
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
### Find a tester
|
|
@@ -222,7 +222,7 @@ pilot import -c ~/Desktop/testers.csv
|
|
|
222
222
|
## [`fastlane`](https://fastlane.tools) Toolchain
|
|
223
223
|
|
|
224
224
|
- [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
|
|
225
|
-
- [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store
|
|
225
|
+
- [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store
|
|
226
226
|
- [`snapshot`](https://github.com/KrauseFx/snapshot): Automate taking localized screenshots of your iOS app on every device
|
|
227
227
|
- [`frameit`](https://github.com/KrauseFx/frameit): Quickly put your screenshots into the right device frames
|
|
228
228
|
- [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
|
data/lib/pilot/build_manager.rb
CHANGED
|
@@ -3,9 +3,9 @@ module Pilot
|
|
|
3
3
|
def upload(options)
|
|
4
4
|
start(options)
|
|
5
5
|
|
|
6
|
-
Helper.log.info "Ready to upload new build to TestFlight (App: #{
|
|
7
|
-
|
|
8
|
-
package_path = PackageBuilder.new.generate(apple_id:
|
|
6
|
+
Helper.log.info "Ready to upload new build to TestFlight (App: #{app.apple_id})...".green
|
|
7
|
+
|
|
8
|
+
package_path = PackageBuilder.new.generate(apple_id: app.apple_id,
|
|
9
9
|
ipa_path: config[:ipa],
|
|
10
10
|
package_path: "/tmp") # TODO: Config
|
|
11
11
|
|
data/lib/pilot/version.rb
CHANGED