fastlane 2.19.2 → 2.19.3

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: e42076502b4fa3fbe77e4de63470cbda2fecdfa7
4
- data.tar.gz: 56cbd81253b36675e0a1cf231e0d4052d79ceee0
3
+ metadata.gz: 1496a1d8a6fffcecbb9d7a8c3a21ac1ed842fe86
4
+ data.tar.gz: 8be92007e92ce7011ff2b54f14272dd4af0009c0
5
5
  SHA512:
6
- metadata.gz: 88801822fb60c83c5b33c5f9deb4c0691e52703325cac2afddc240ab83e6d58d08df012f1ded9bfb9a9f6c7551ccc41f609b8098ca8421bb78b58b16c80864b0
7
- data.tar.gz: 7b0c816c8630c5cd7427bfb89dd27aefb6b21e5960437e5c1e94b3413b4c4f9538c6d67a09014fff89aba27ee7c92144a4ed93aed8c5e7504e868a10b24de682
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/fastlane.zip">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
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/fastlane.zip">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
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/fastlane.zip\">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>"
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>"
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.19.2'.freeze
2
+ VERSION = '2.19.3'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -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/fastlane.zip">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
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>
@@ -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 |a|
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 = a.certificates.map do |cert|
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.compact
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 |raw_cert|
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(raw_cert)
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 '#{a.name}' not available locally: #{cert.id}, skipping this one...")
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 && a.certificate_valid?
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.2
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-06 00:00:00.000000000 Z
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.2
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