fastlane 2.19.2 → 2.19.3
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/README.md +1 -1
- data/fastlane/README.md +1 -1
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/match/lib/assets/READMETemplate.md +1 -1
- data/sigh/lib/sigh/runner.rb +10 -8
- data/snapshot/lib/.DS_Store +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1496a1d8a6fffcecbb9d7a8c3a21ac1ed842fe86
|
|
4
|
+
data.tar.gz: 8be92007e92ce7011ff2b54f14272dd4af0009c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3caf9e1ef2022d0675cf11cac48779297c426c6bd9e88780a82c8cfeeeacab5183adc14568869bd422578b69a475cba98c98ebbb08bc45c1851f150d5234008
|
|
7
|
+
data.tar.gz: eb6c02a50c47c506d8f4026c58c2dd87b90546238c58bfb6890643df57abdea5a77afbd961472851ce20dff2ac674fb865d277d2d8f7cb081967b3ac53ffd22e
|
data/README.md
CHANGED
|
@@ -79,7 +79,7 @@ xcode-select --install
|
|
|
79
79
|
</tr>
|
|
80
80
|
<tr>
|
|
81
81
|
<td width="33%"><code>brew cask install fastlane</code></td>
|
|
82
|
-
<td width="33%"><a href="https://download.fastlane.tools/
|
|
82
|
+
<td width="33%"><a href="https://download.fastlane.tools/">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
|
|
83
83
|
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
|
|
84
84
|
</tr>
|
|
85
85
|
</table>
|
data/fastlane/README.md
CHANGED
|
@@ -119,7 +119,7 @@ xcode-select --install
|
|
|
119
119
|
</tr>
|
|
120
120
|
<tr>
|
|
121
121
|
<td width="33%"><code>brew cask install fastlane</code></td>
|
|
122
|
-
<td width="33%"><a href="https://download.fastlane.tools
|
|
122
|
+
<td width="33%"><a href="https://download.fastlane.tools">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
|
|
123
123
|
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
|
|
124
124
|
</tr>
|
|
125
125
|
</table>
|
|
@@ -29,7 +29,7 @@ module Fastlane
|
|
|
29
29
|
output << "</tr>"
|
|
30
30
|
output << "<tr>"
|
|
31
31
|
output << "<td width=\"33%\"><code>brew cask install fastlane</code></td>"
|
|
32
|
-
output << "<td width=\"33%\"><a href=\"https://download.fastlane.tools
|
|
32
|
+
output << "<td width=\"33%\"><a href=\"https://download.fastlane.tools\">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>"
|
|
33
33
|
output << "<td width=\"33%\"><code>sudo gem install fastlane -NV</code></td>"
|
|
34
34
|
output << "</tr>"
|
|
35
35
|
output << "</table>"
|
|
@@ -29,7 +29,7 @@ xcode-select --install
|
|
|
29
29
|
</tr>
|
|
30
30
|
<tr>
|
|
31
31
|
<td width="33%"><code>brew cask install fastlane</code></td>
|
|
32
|
-
<td width="33%"><a href="https://download.fastlane.tools
|
|
32
|
+
<td width="33%"><a href="https://download.fastlane.tools">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
|
|
33
33
|
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
|
|
34
34
|
</tr>
|
|
35
35
|
</table>
|
data/sigh/lib/sigh/runner.rb
CHANGED
|
@@ -98,35 +98,37 @@ module Sigh
|
|
|
98
98
|
return results if Sigh.config[:skip_certificate_verification]
|
|
99
99
|
|
|
100
100
|
UI.message "Verifying certificates..."
|
|
101
|
-
return results.find_all do |
|
|
101
|
+
return results.find_all do |current_profile|
|
|
102
102
|
installed = false
|
|
103
103
|
|
|
104
104
|
# Attempts to download all certificats from this profile
|
|
105
105
|
# for checking if they are installed.
|
|
106
106
|
# `cert.download_raw` can fail if the user is a
|
|
107
107
|
# "member" and not an a "admin"
|
|
108
|
-
raw_certs =
|
|
108
|
+
raw_certs = current_profile.certificates.map do |cert|
|
|
109
109
|
begin
|
|
110
110
|
raw_cert = cert.download_raw
|
|
111
111
|
rescue => error
|
|
112
112
|
UI.important("Cannot download cert #{cert.id} - #{error.message}")
|
|
113
113
|
raw_cert = nil
|
|
114
114
|
end
|
|
115
|
-
raw_cert
|
|
116
|
-
end
|
|
115
|
+
{ downloaded: raw_cert, cert: cert }
|
|
116
|
+
end
|
|
117
117
|
|
|
118
118
|
# Makes sure we have the certificate installed on the local machine
|
|
119
|
-
raw_certs.each do |
|
|
119
|
+
raw_certs.each do |current_cert|
|
|
120
|
+
# Skip certificates that failed to download
|
|
121
|
+
next unless current_cert[:downloaded]
|
|
120
122
|
file = Tempfile.new('cert')
|
|
121
|
-
file.write(
|
|
123
|
+
file.write(current_cert[:downloaded])
|
|
122
124
|
file.close
|
|
123
125
|
if FastlaneCore::CertChecker.installed?(file.path)
|
|
124
126
|
installed = true
|
|
125
127
|
else
|
|
126
|
-
UI.message("Certificate for Provisioning Profile '#{
|
|
128
|
+
UI.message("Certificate for Provisioning Profile '#{current_profile.name}' not available locally: #{current_cert[:cert].id}, skipping this one...")
|
|
127
129
|
end
|
|
128
130
|
end
|
|
129
|
-
installed &&
|
|
131
|
+
installed && current_profile.certificate_valid?
|
|
130
132
|
end
|
|
131
133
|
end
|
|
132
134
|
|
|
Binary file
|
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.
|
|
4
|
+
version: 2.19.3
|
|
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-03-
|
|
17
|
+
date: 2017-03-07 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: slack-notifier
|
|
@@ -1179,6 +1179,7 @@ files:
|
|
|
1179
1179
|
- sigh/lib/sigh/resign.rb
|
|
1180
1180
|
- sigh/lib/sigh/runner.rb
|
|
1181
1181
|
- snapshot/README.md
|
|
1182
|
+
- snapshot/lib/.DS_Store
|
|
1182
1183
|
- snapshot/lib/assets/SnapfileTemplate
|
|
1183
1184
|
- snapshot/lib/assets/SnapshotHelper.swift
|
|
1184
1185
|
- snapshot/lib/assets/SnapshotHelper2-3.swift
|
|
@@ -1323,7 +1324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1323
1324
|
version: '0'
|
|
1324
1325
|
requirements: []
|
|
1325
1326
|
rubyforge_project:
|
|
1326
|
-
rubygems_version: 2.5.
|
|
1327
|
+
rubygems_version: 2.5.1
|
|
1327
1328
|
signing_key:
|
|
1328
1329
|
specification_version: 4
|
|
1329
1330
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|