fastlane 2.19.0.beta.20170224010025 → 2.19.0.beta.20170225010031

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: 446fe4080804de8e7da6cd47fd88fc0da6095cf6
4
- data.tar.gz: 5cfe6b85cb8930802b13938f8cef7ace5ca3538a
3
+ metadata.gz: edfaa3f92dc8b755fa97a3bfa7c6abdb2c83aba2
4
+ data.tar.gz: 9fe6a09e114511d403d6bd13d49808c6a38f2686
5
5
  SHA512:
6
- metadata.gz: b726e5f14062352ce75fc9dec3ebc12eaf9a8c00f96c8348b1baa5451bd665b61fc444ff45e0881b19df99dae734985847e79b2e40b007476771cc4647d372cf
7
- data.tar.gz: beb48e2eb791c8a613f74d976ce73d60c34ecdc4573c34a0c94ead2a03c7846bb16123c101e8dd9c7e55cb398097ff4d2ce6582b17e2cea16c2be026eeb81daa
6
+ metadata.gz: be85fa0e238928462b61260e1c9f811521fb5ef5dddf4663bef178d0ed8c97c2e7cab55fa8f271c9df80c2b8477522623279235390b9990006bea551d8fd2d2a
7
+ data.tar.gz: 08e48f4781a7c639b14abdab0ceb26ea4ff9694b8445fcad4b8fb7b012e7f34e91a9677e82c1db82e27b95a79ae01763606f10cce65a366bbc3e75d7d7d3bf98
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.19.0.beta.20170224010025'.freeze
2
+ VERSION = '2.19.0.beta.20170225010031'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -62,7 +62,7 @@ module FastlaneCore
62
62
  end
63
63
  end
64
64
 
65
- true
65
+ destination
66
66
  end
67
67
 
68
68
  private
@@ -134,7 +134,7 @@ module Match
134
134
  self.changes_to_commit = true
135
135
  end
136
136
 
137
- FastlaneCore::ProvisioningProfile.install(profile)
137
+ installed_profile = FastlaneCore::ProvisioningProfile.install(profile)
138
138
 
139
139
  parsed = FastlaneCore::ProvisioningProfile.parse(profile)
140
140
  uuid = parsed["UUID"]
@@ -163,6 +163,11 @@ module Match
163
163
  platform: params[:platform]),
164
164
  parsed["Name"])
165
165
 
166
+ Utils.fill_environment(Utils.environment_variable_name_profile_path(app_identifier: app_identifier,
167
+ type: prov_type,
168
+ platform: params[:platform]),
169
+ installed_profile)
170
+
166
171
  return uuid
167
172
  end
168
173
 
@@ -26,6 +26,7 @@ module Match
26
26
  {
27
27
  Utils.environment_variable_name(app_identifier: app_identifier, type: type, platform: platform) => "Profile UUID",
28
28
  Utils.environment_variable_name_profile_name(app_identifier: app_identifier, type: type, platform: platform) => "Profile Name",
29
+ Utils.environment_variable_name_profile_path(app_identifier: app_identifier, type: type, platform: platform) => "Profile Path",
29
30
  Utils.environment_variable_name_team_id(app_identifier: app_identifier, type: type, platform: platform) => "Development Team ID"
30
31
  }.each do |env_key, name|
31
32
  rows << [name, env_key, ENV[env_key]]
@@ -23,6 +23,10 @@ module Match
23
23
  (base_environment_variable_name(app_identifier: app_identifier, type: type, platform: platform) + ["profile-name"]).join("_")
24
24
  end
25
25
 
26
+ def self.environment_variable_name_profile_path(app_identifier: nil, type: nil, platform: :ios)
27
+ (base_environment_variable_name(app_identifier: app_identifier, type: type, platform: platform) + ["profile-path"]).join("_")
28
+ end
29
+
26
30
  def self.get_cert_info(cer_certificate_path)
27
31
  command = "openssl x509 -inform der -in #{cer_certificate_path.shellescape} -subject -dates -noout"
28
32
  command << " &" # start in separate process
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.19.0.beta.20170224010025
4
+ version: 2.19.0.beta.20170225010031
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-02-24 00:00:00.000000000 Z
17
+ date: 2017-02-25 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -1294,22 +1294,22 @@ metadata: {}
1294
1294
  post_install_message:
1295
1295
  rdoc_options: []
1296
1296
  require_paths:
1297
- - spaceship/lib
1297
+ - gym/lib
1298
+ - deliver/lib
1298
1299
  - scan/lib
1299
- - snapshot/lib
1300
- - fastlane/lib
1300
+ - screengrab/lib
1301
+ - spaceship/lib
1302
+ - credentials_manager/lib
1303
+ - fastlane_core/lib
1304
+ - cert/lib
1301
1305
  - sigh/lib
1302
1306
  - pem/lib
1303
- - credentials_manager/lib
1304
- - screengrab/lib
1305
- - gym/lib
1306
- - deliver/lib
1307
+ - produce/lib
1307
1308
  - supply/lib
1308
- - cert/lib
1309
+ - fastlane/lib
1309
1310
  - frameit/lib
1310
- - fastlane_core/lib
1311
+ - snapshot/lib
1311
1312
  - pilot/lib
1312
- - produce/lib
1313
1313
  - match/lib
1314
1314
  required_ruby_version: !ruby/object:Gem::Requirement
1315
1315
  requirements: