fastlane 2.70.0.beta.20171216010003 → 2.70.0.beta.20171217010003
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e70fc25f458a107f2da53dd83d9defd296efa3e9
|
4
|
+
data.tar.gz: 3a653f3c0c685c667468c6e87739172ce654f65a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d346c552e2a3d0aa8a494b710a9d47c4bf871077057df1f7c662cd81d89444cdf68ca7fe01e2cdba59d69593b054d21770a51a284d59d5eb790f5741ce3ecf5
|
7
|
+
data.tar.gz: 98169759b017de052b8b154fcc25ed13e692e5797eb8a494caf94afd28470102af89a9f05d3e092cbc78e9ea53f992c3d2757e10e2d6a90015ca9f1536104cae
|
@@ -122,8 +122,6 @@ module Fastlane
|
|
122
122
|
UI.important "After creating the Gemfile and Gemfile.lock, commit those files into version control"
|
123
123
|
end
|
124
124
|
UI.important "Get started using a Gemfile for fastlane https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile"
|
125
|
-
|
126
|
-
sleep 2 # napping is life, otherwise the user might not see this message
|
127
125
|
end
|
128
126
|
|
129
127
|
# Returns an array of symbols for the available lanes for the Fastfile
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.70.0.beta.
|
2
|
+
VERSION = '2.70.0.beta.20171217010003'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
data/match/lib/match/encrypt.rb
CHANGED
@@ -89,8 +89,16 @@ module Match
|
|
89
89
|
command << "-out #{tmpfile.shellescape}"
|
90
90
|
command << "-a"
|
91
91
|
command << "-d" unless encrypt
|
92
|
-
command << "&> /dev/null" unless FastlaneCore::Globals.verbose? # to show
|
93
|
-
|
92
|
+
command << "&> /dev/null" unless FastlaneCore::Globals.verbose? # to show an error message if something goes wrong
|
93
|
+
|
94
|
+
_out, err, st = Open3.capture3(command.join(' '))
|
95
|
+
success = st.success?
|
96
|
+
|
97
|
+
# Ubuntu `openssl` does not fail on failure
|
98
|
+
# but at least outputs an error message
|
99
|
+
unless err.to_s.empty?
|
100
|
+
success = false
|
101
|
+
end
|
94
102
|
|
95
103
|
UI.crash!("Error decrypting '#{path}'") unless success
|
96
104
|
|
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.70.0.beta.
|
4
|
+
version: 2.70.0.beta.20171217010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-12-
|
18
|
+
date: 2017-12-17 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|