pilot 1.7.0 → 1.8.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 +4 -4
- data/lib/pilot.rb +1 -0
- data/lib/pilot/options.rb +9 -1
- 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: 45aabd343e6c20b18cd0eb8b69d8629d35d6d121
|
|
4
|
+
data.tar.gz: bc8b8ae636c53772e999683301c7de02afab65d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3285342409ad1b9074278e56dd12380c0a1e256ef3a38574a11535b407d8e00ad79c12709de6f35c2027a89648db68ad89ca226189dcde8b992b7ecfd799388d
|
|
7
|
+
data.tar.gz: f6f705a6bab3472e06ac2109c767354376b10ae0c369dcd664664f7d3e53f928a81c24f009ff71ab8154ab0c31910074f65785df7197e12d7c58dcc1baf93613
|
data/lib/pilot.rb
CHANGED
data/lib/pilot/options.rb
CHANGED
|
@@ -108,8 +108,16 @@ module Pilot
|
|
|
108
108
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
|
109
109
|
verify_block: proc do |value|
|
|
110
110
|
ENV["FASTLANE_ITC_TEAM_NAME"] = value
|
|
111
|
+
end),
|
|
112
|
+
FastlaneCore::ConfigItem.new(key: :dev_portal_team_id,
|
|
113
|
+
env_name: "PILOT_DEV_PORTAL_TEAM_ID",
|
|
114
|
+
description: "The short ID of your team in the developer portal, if you're in multiple teams. Different from your iTC team ID!",
|
|
115
|
+
optional: true,
|
|
116
|
+
is_string: true,
|
|
117
|
+
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
|
|
118
|
+
verify_block: proc do |value|
|
|
119
|
+
ENV["FASTLANE_TEAM_ID"] = value.to_s
|
|
111
120
|
end)
|
|
112
|
-
|
|
113
121
|
]
|
|
114
122
|
end
|
|
115
123
|
end
|
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: 1.
|
|
4
|
+
version: 1.8.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: 2016-05-
|
|
11
|
+
date: 2016-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
259
259
|
version: '0'
|
|
260
260
|
requirements: []
|
|
261
261
|
rubyforge_project:
|
|
262
|
-
rubygems_version: 2.4.
|
|
262
|
+
rubygems_version: 2.4.5.1
|
|
263
263
|
signing_key:
|
|
264
264
|
specification_version: 4
|
|
265
265
|
summary: The best way to manage your TestFlight testers and builds from your terminal
|