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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a252d1f974787effe53dd857fabc664f5266bd9
4
- data.tar.gz: 7c878a216f10538ce757c88f4cb66bcf047316ca
3
+ metadata.gz: 547c1c1fcdee5344cad7a480858f2b19d400af2d
4
+ data.tar.gz: 633f8565f712ffe63b9efe8fe826f312191e76ac
5
5
  SHA512:
6
- metadata.gz: c41ab0d075f516c1764755ea9c5f986e815884a53f91622c5f0790c50508d3b0f3bc6af7e326f57d44560778d05cd1d92451e1f20bc18670e6c3172142639def
7
- data.tar.gz: 8f46022dac75b6c64e5082f2447214d17eda3df4bb2496c375ccae279af49624e658112c5d9a6d45b9add0c50530d0e913eb6d99709acacf3fd79b3a3d4c8444
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 to `pilot`:
78
+ You'll be asked for any missing information. Additionally, you can pass all kinds of parameters:
79
79
 
80
80
  ```
81
- pilot upload -u felix@krausefx.com
81
+ pilot --help
82
82
  ```
83
83
 
84
- Additionally you can skip the submission of the binary, which means, the `ipa` file will only be uploaded and not distributet to testers:
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.airforce](https://spaceship.airforce) to submit the build metadata and the iTunes Transporter to upload the binary :rocket:
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 -e email@email.com -a com.krausefx.app
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 using a single command
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
@@ -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: #{config[:apple_id]})...".green
7
-
8
- package_path = PackageBuilder.new.generate(apple_id: config[: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
@@ -1,4 +1,4 @@
1
1
  module Pilot
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  DESCRIPTION = "The best way to manage your TestFlight testers and builds from your terminal"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pilot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause