pilot 0.3.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/pilot/build_manager.rb +1 -1
- data/lib/pilot/options.rb +6 -6
- data/lib/pilot/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3a798617cc11761e7f9b9329ce46d51959c20c5
|
4
|
+
data.tar.gz: 0d70a2cf1ad30fbcc777954a503ba399fedefceb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6aac9b20969fbea489c2b8dacd858b65b5bc6d251b7289a75fe99dcd8100b8a377fc2157fafe36655a8491bbf4e9d7b0bd9b35096568a3286c3951cee87871e7
|
7
|
+
data.tar.gz: d31c00d7484b545d6f3c7152b3f6a79283feaf4350f65a51606f14c58e3882725419d0d0ff5c909a8a6d1527d82f48638c6a31a2d327917ecf2003c22ad10c0c
|
data/lib/pilot/build_manager.rb
CHANGED
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
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.
|
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-
|
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.
|
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
|