fastlane 2.82.0.beta.20180221010003 → 2.82.0.beta.20180222010003

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: 5055290cd6cb8b9094b31a442939c1401f25920e
4
- data.tar.gz: ffbee1bd9bd3975e422dc1059989dd555737e137
3
+ metadata.gz: 0071ace38acf8e4f22d7eff9f2981444490e2b8f
4
+ data.tar.gz: de15fafda10e49643d02cb3d889bfab577b5dc74
5
5
  SHA512:
6
- metadata.gz: ae9c8e82f504332302e762d46205da80bf69c0c068dd3e29a0367569d2c4aea9e876779eff990620260fd8fb43d7dab00e81593b10476b1898f9275f2695e7a7
7
- data.tar.gz: e3388c4c294598935bf1b231f0bb1563f8034c865ee8214fd7f48151363cf3a21dfc196e46374808384928feaa84802c2476eb3dce654d0931ff0bb6c31fd552
6
+ metadata.gz: 5821d0f4d9811339dea1d80285c1b41408e57a811b64dc99479cde3ffb15cd716347ffe29652246acfaf9ba58b4a4edd636170763cab73eb283930c406029ab0
7
+ data.tar.gz: 56fa75771b88ae4135e9e69833e80db5cc92926bfbace671d06c6379c1b6cabd66218553ada1c8dbf577fc1eb00723bef63a196044ee6228611efab9b02eacfa
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.82.0.beta.20180221010003'.freeze
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
@@ -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
- ## Timestamps
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
- prefix = msg.include?("") ? "" : "▸ "
76
- log.info(prefix + "" + msg.magenta)
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.20180221010003
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-21 00:00:00.000000000 Z
28
+ date: 2018-02-22 00:00:00.000000000 Z
29
29
  dependencies:
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: slack-notifier