fastlane 2.18.2 → 2.18.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: f95259118de35e5f0bf061d30a5fef49137b2837
4
- data.tar.gz: 4a9ef9be67de346ec9334f2a77907d75d5d56b8f
3
+ metadata.gz: 2b113c5764ae5b21122946e3bbe8bb097aae4296
4
+ data.tar.gz: 147a7b7383c995af5dc460ba5e3d4ccf57c58297
5
5
  SHA512:
6
- metadata.gz: 3649cbb7a9bc0bcf97e2592610a3812b37a04c955c437ec9ff363c983d4cc233d894b0b449d962df58f62a74fd833669ec56198179951caa2641fab911a87ec7
7
- data.tar.gz: 42ca182fd45131c07990be51b864696a8b1b7b2fbf924a38202592e2039b1a55f987e26bf2e9c623dee73c85ac1f1e2caaa905a9a71eef6530185682e6ac35c9
6
+ metadata.gz: d3f45a22f4b83404cbd72a34e2779387427d0e7363d418ada998e6e3bc3e55fc613fd3346cc896a3e95fafbcc20707e8eef2dcdce2aca2fc54f5df4b064308f5
7
+ data.tar.gz: a3a69cdcd2e5a1e6083306ba03db5a3eb540d1a3ab18354db4481a1771b80ee7f895002fd8ce64a5c841c636a233a970ea97a44772fc1080e2464f26d84c69bd
@@ -6,8 +6,6 @@ module Fastlane
6
6
 
7
7
  require 'frameit'
8
8
 
9
- FastlaneCore::UpdateChecker.start_looking_for_update('frameit') unless Helper.is_test?
10
-
11
9
  UI.message("Framing screenshots at path #{config[:path]}")
12
10
 
13
11
  Dir.chdir(config[:path]) do
@@ -10,7 +10,6 @@ module Fastlane
10
10
 
11
11
  return if Helper.test?
12
12
 
13
- FastlaneCore::UpdateChecker.start_looking_for_update('produce')
14
13
  Produce.config = params # we alread have the finished config
15
14
 
16
15
  Dir.chdir(FastlaneCore::FastlaneFolder.path || Dir.pwd) do
@@ -5,8 +5,6 @@ module Fastlane
5
5
  require 'supply'
6
6
  require 'supply/options'
7
7
 
8
- FastlaneCore::UpdateChecker.start_looking_for_update('supply') unless Helper.is_test?
9
-
10
8
  all_apk_paths = Actions.lane_context[SharedValues::GRADLE_ALL_APK_OUTPUT_PATHS] || []
11
9
  if all_apk_paths.length > 1
12
10
  params[:apk_paths] ||= all_apk_paths
@@ -22,6 +22,8 @@ module Fastlane
22
22
  print_slow_fastlane_warning
23
23
  end
24
24
 
25
+ FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
26
+
25
27
  ARGV.unshift("spaceship") if ARGV.first == "spaceauth"
26
28
  tool_name = ARGV.first ? ARGV.first.downcase : nil
27
29
 
@@ -62,6 +64,8 @@ module Fastlane
62
64
  require "fastlane/commands_generator"
63
65
  Fastlane::CommandsGenerator.start
64
66
  end
67
+ ensure
68
+ FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
65
69
  end
66
70
 
67
71
  # Since fastlane also supports the rocket and biceps emoji as executable
@@ -30,7 +30,7 @@ module Fastlane
30
30
  $stdout = out_channel
31
31
  $stderr = out_channel
32
32
  end
33
- FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
33
+
34
34
  Fastlane.load_actions
35
35
  FastlaneCore::Swag.stop_loader
36
36
  # do not use "include" as it may be some where in the commandline where "env" is required, therefore explicit index->0
@@ -41,7 +41,6 @@ module Fastlane
41
41
  end
42
42
  self.new.run
43
43
  ensure
44
- FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
45
44
  Fastlane::PluginUpdateManager.show_update_status
46
45
  if FastlaneCore::Globals.capture_output?
47
46
  FastlaneCore::Globals.captured_output = Helper.strip_ansi_colors($stdout.string)
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.18.2'.freeze
2
+ VERSION = '2.18.3'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
data/pem/README.md CHANGED
@@ -120,6 +120,22 @@ Instead, you may verify the file is valid using OpenSSL:
120
120
 
121
121
  openssl pkcs12 -info -in my.p12
122
122
 
123
+ If you need the `p12` in your keychain, perhaps to test push with an app like [Knuff](https://github.com/KnuffApp/Knuff) or [Pusher](https://github.com/noodlewerk/NWPusher), you can use `openssl` to export the `p12` to `pem` and back to `p12`:
124
+
125
+ % openssl pkcs12 -in my.p12 -out my.pem
126
+ Enter Import Password:
127
+ <hit enter: the p12 has no password>
128
+ MAC verified OK
129
+ Enter PEM pass phrase:
130
+ <enter a temporary password to encrypt the pem file>
131
+
132
+ % openssl pkcs12 -export -in my.pem -out my-with-passphrase.p12
133
+ Enter pass phrase for temp.pem:
134
+ <enter the temporary password to decrypt the pem file>
135
+
136
+ Enter Export Password:
137
+ <enter a password for encrypting the new p12 file>
138
+
123
139
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
124
140
 
125
141
  ## Environment Variables
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.18.2
4
+ version: 2.18.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-02-22 00:00:00.000000000 Z
17
+ date: 2017-02-23 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