fastlane 2.82.0.beta.20180221010003 → 2.82.0.beta.20180222010003
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: 0071ace38acf8e4f22d7eff9f2981444490e2b8f
|
4
|
+
data.tar.gz: de15fafda10e49643d02cb3d889bfab577b5dc74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5821d0f4d9811339dea1d80285c1b41408e57a811b64dc99479cde3ffb15cd716347ffe29652246acfaf9ba58b4a4edd636170763cab73eb283930c406029ab0
|
7
|
+
data.tar.gz: 56fa75771b88ae4135e9e69833e80db5cc92926bfbace671d06c6379c1b6cabd66218553ada1c8dbf577fc1eb00723bef63a196044ee6228611efab9b02eacfa
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.82.0.beta.
|
2
|
+
VERSION = '2.82.0.beta.20180222010003'.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/fastlane_core/README.md
CHANGED
@@ -20,9 +20,10 @@ This gem contains all shared classes and code:
|
|
20
20
|
|
21
21
|
You can hide the inline changelog by setting the `FASTLANE_HIDE_CHANGELOG` environment variable
|
22
22
|
|
23
|
-
##
|
23
|
+
## Output environment variables
|
24
24
|
|
25
|
-
To hide timestamps in each row, set the `FASTLANE_HIDE_TIMESTAMP` environment variable.
|
25
|
+
- To hide timestamps in each row, set the `FASTLANE_HIDE_TIMESTAMP` environment variable to true.
|
26
|
+
- To disable output formatting, set the `FASTLANE_DISABLE_OUTPUT_FORMAT` environment variable to true.
|
26
27
|
|
27
28
|
## Interacting with the user
|
28
29
|
|
@@ -72,8 +72,12 @@ module FastlaneCore
|
|
72
72
|
def command_output(message)
|
73
73
|
actual = (message.split("\r").last || "") # as clearing the line will remove the `>` and the time stamp
|
74
74
|
actual.split("\n").each do |msg|
|
75
|
-
|
76
|
-
|
75
|
+
if FastlaneCore::Env.truthy?("FASTLANE_DISABLE_OUTPUT_FORMAT")
|
76
|
+
log.info(msg)
|
77
|
+
else
|
78
|
+
prefix = msg.include?("▸") ? "" : "▸ "
|
79
|
+
log.info(prefix + "" + msg.magenta)
|
80
|
+
end
|
77
81
|
end
|
78
82
|
end
|
79
83
|
|
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.82.0.beta.
|
4
|
+
version: 2.82.0.beta.20180222010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Olivier Halligon
|
@@ -25,7 +25,7 @@ authors:
|
|
25
25
|
autorequire:
|
26
26
|
bindir: bin
|
27
27
|
cert_chain: []
|
28
|
-
date: 2018-02-
|
28
|
+
date: 2018-02-22 00:00:00.000000000 Z
|
29
29
|
dependencies:
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: slack-notifier
|