pilot 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0c1746c0a6bf77a5c917369c8448365672b010ad
4
- data.tar.gz: 6702ec8bd930e56b5e1fc3ee0413658c7315dc0e
3
+ metadata.gz: 45aabd343e6c20b18cd0eb8b69d8629d35d6d121
4
+ data.tar.gz: bc8b8ae636c53772e999683301c7de02afab65d9
5
5
  SHA512:
6
- metadata.gz: 0f4dc4e037ec39a7581ac41b16c3ad119559144d7f9fa75c0b656635648e6708eaa76803e7f161bd37f6ea9a949aec7daa9d0ae64f02e47f40149c81496285ab
7
- data.tar.gz: a0a1e01b97d0884225368e882fc3442bc2e7caf97eda36cc487e47627e2eaa1d5cbf6cde8dd4d7bd26bfae81870ac66610e9bbfb5292b7b494fb973da234c2d6
6
+ metadata.gz: 3285342409ad1b9074278e56dd12380c0a1e256ef3a38574a11535b407d8e00ad79c12709de6f35c2027a89648db68ad89ca226189dcde8b992b7ecfd799388d
7
+ data.tar.gz: f6f705a6bab3472e06ac2109c767354376b10ae0c369dcd664664f7d3e53f928a81c24f009ff71ab8154ab0c31910074f65785df7197e12d7c58dcc1baf93613
@@ -1,5 +1,6 @@
1
1
  require "json"
2
2
  require "pilot/version"
3
+ require "pilot/options"
3
4
  require "pilot/manager"
4
5
  require "pilot/build_manager"
5
6
  require "pilot/tester_manager"
@@ -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
@@ -1,4 +1,4 @@
1
1
  module Pilot
2
- VERSION = "1.7.0"
2
+ VERSION = "1.8.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: 1.7.0
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-24 00:00:00.000000000 Z
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.0
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