pilot 0.3.0 → 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
  SHA1:
3
- metadata.gz: 2efe38c09c39325f3cb29ad7bff24eabcf2730ff
4
- data.tar.gz: 214a5e55d77bd2f319b45196f87742078f52b167
3
+ metadata.gz: b3a798617cc11761e7f9b9329ce46d51959c20c5
4
+ data.tar.gz: 0d70a2cf1ad30fbcc777954a503ba399fedefceb
5
5
  SHA512:
6
- metadata.gz: 8b454c8620476fb558cf17e461662c70dfbd077c14e751a3555d7a8e14bf0f28eb112d3036313e16f215c599e392d48f7abb432f2188bebab4739d0386394591
7
- data.tar.gz: 9bb3d5c32af40d7c39082fd898f35141f87d7830032cac3591fabf3391ea7300005b7bbad1605d4c6c4c552250dbb156cb5d4d341a58f83d940681930257c570
6
+ metadata.gz: 6aac9b20969fbea489c2b8dacd858b65b5bc6d251b7289a75fe99dcd8100b8a377fc2157fafe36655a8491bbf4e9d7b0bd9b35096568a3286c3951cee87871e7
7
+ data.tar.gz: d31c00d7484b545d6f3c7152b3f6a79283feaf4350f65a51606f14c58e3882725419d0d0ff5c909a8a6d1527d82f48638c6a31a2d327917ecf2003c22ad10c0c
@@ -3,7 +3,7 @@ module Pilot
3
3
  def upload(options)
4
4
  start(options)
5
5
 
6
- raise "No ipa file given" unless config[:ipa]
6
+ raise "No ipa file given".red unless config[:ipa]
7
7
 
8
8
  Helper.log.info "Ready to upload new build to TestFlight (App: #{app.apple_id})...".green
9
9
 
data/lib/pilot/options.rb CHANGED
@@ -10,6 +10,12 @@ module Pilot
10
10
  env_name: "PILOT_USERNAME",
11
11
  description: "Your Apple ID Username",
12
12
  default_value: CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)),
13
+ FastlaneCore::ConfigItem.new(key: :app_identifier,
14
+ short_option: "-a",
15
+ env_name: "PILOT_APP_IDENTIFIER",
16
+ description: "The bundle identifier of the app to upload or manage testers (optional)",
17
+ optional: true,
18
+ default_value: ENV["TESTFLIGHT_APP_IDENTITIFER"] || CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
13
19
  FastlaneCore::ConfigItem.new(key: :ipa,
14
20
  short_option: "-i",
15
21
  optional: true,
@@ -31,12 +37,6 @@ module Pilot
31
37
  description: "Skip the distributing action of pilot and only upload the ipa file",
32
38
  is_string: false,
33
39
  default_value: false),
34
- FastlaneCore::ConfigItem.new(key: :app_identifier,
35
- short_option: "-a",
36
- env_name: "PILOT_APP_IDENTIFIER",
37
- description: "The bundle identifier of the app to upload or manage testers (optional)",
38
- optional: true,
39
- default_value: ENV["TESTFLIGHT_APP_IDENTITIFER"] || CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
40
40
  FastlaneCore::ConfigItem.new(key: :apple_id,
41
41
  short_option: "-p",
42
42
  env_name: "PILOT_APPLE_ID",
data/lib/pilot/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Pilot
2
- VERSION = "0.3.0"
2
+ VERSION = "1.0.0"
3
3
  DESCRIPTION = "The best way to manage your TestFlight testers and builds from your terminal"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pilot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-12 00:00:00.000000000 Z
11
+ date: 2015-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: '0'
248
248
  requirements: []
249
249
  rubyforge_project:
250
- rubygems_version: 2.4.5
250
+ rubygems_version: 2.4.8
251
251
  signing_key:
252
252
  specification_version: 4
253
253
  summary: The best way to manage your TestFlight testers and builds from your terminal