fastlane 2.81.0.beta.20180211010003 → 2.81.0.beta.20180212010003
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 +4 -4
- data/fastlane/lib/fastlane/actions/testfairy.rb +1 -8
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/gym/lib/gym/runner.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d4cd5a8f568bbc996e0ad18bfa85810022de1cc
|
4
|
+
data.tar.gz: b34a2848d80f4e4a13634b315bc269278e91a116
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a394bcdd8fd7d60c8c6db1415971aea2b97edd1d4b7e578110aac752fa327113aa0728702a574472a1d76805fe7cb4ef71aabe10417ff0351ad27122da4b862
|
7
|
+
data.tar.gz: 44cc248e17de7830ab61e365ba18ecd09e83eb0b3cf30cd2ec83fee49cae00e80935f2adf2d4716c4d472dfbf61f03829fa2c07e348d1e9d695b8b71b6e96a78
|
@@ -76,8 +76,6 @@ module Fastlane
|
|
76
76
|
[key, value.join(',')]
|
77
77
|
when :metrics
|
78
78
|
[key, metrics_to_client.call(value).join(',')]
|
79
|
-
when :icon_watermark
|
80
|
-
['icon-watermark', value]
|
81
79
|
when :comment
|
82
80
|
[key, value]
|
83
81
|
when :auto_update
|
@@ -172,11 +170,6 @@ module Fastlane
|
|
172
170
|
# video
|
173
171
|
# video-quality
|
174
172
|
# video-rate
|
175
|
-
FastlaneCore::ConfigItem.new(key: :icon_watermark,
|
176
|
-
optional: true,
|
177
|
-
env_name: "FL_TESTFAIRY_ICON_WATERMARK",
|
178
|
-
description: "Add a small watermark to app icon",
|
179
|
-
default_value: 'off'),
|
180
173
|
FastlaneCore::ConfigItem.new(key: :comment,
|
181
174
|
optional: true,
|
182
175
|
env_name: "FL_TESTFAIRY_COMMENT",
|
@@ -185,7 +178,7 @@ module Fastlane
|
|
185
178
|
FastlaneCore::ConfigItem.new(key: :auto_update,
|
186
179
|
optional: true,
|
187
180
|
env_name: "FL_TESTFAIRY_AUTO_UPDATE",
|
188
|
-
description: "Allows easy upgrade of all users to current version",
|
181
|
+
description: "Allows an easy upgrade of all users to the current version. The default is 'off', to enable set as 'on'",
|
189
182
|
default_value: 'off'),
|
190
183
|
# not well documented
|
191
184
|
FastlaneCore::ConfigItem.new(key: :notify,
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.81.0.beta.
|
2
|
+
VERSION = '2.81.0.beta.20180212010003'.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/gym/lib/gym/runner.rb
CHANGED
@@ -127,6 +127,7 @@ module Gym
|
|
127
127
|
|
128
128
|
# Compress and move the dsym file
|
129
129
|
containing_directory = File.expand_path("..", PackageCommandGenerator.dsym_path)
|
130
|
+
bcsymbolmaps_directory = File.expand_path("../../BCSymbolMaps", PackageCommandGenerator.dsym_path)
|
130
131
|
|
131
132
|
available_dsyms = Dir.glob("#{containing_directory}/*.dSYM")
|
132
133
|
UI.message("Compressing #{available_dsyms.count} dSYM(s)") unless Gym.config[:silent]
|
@@ -134,7 +135,12 @@ module Gym
|
|
134
135
|
output_path = File.expand_path(File.join(Gym.config[:output_directory], Gym.config[:output_name] + ".app.dSYM.zip"))
|
135
136
|
command = "cd '#{containing_directory}' && zip -r '#{output_path}' *.dSYM"
|
136
137
|
Helper.backticks(command, print: !Gym.config[:silent])
|
137
|
-
|
138
|
+
if Dir.exist?(bcsymbolmaps_directory)
|
139
|
+
available_bcsymbolmaps = Dir.glob("#{bcsymbolmaps_directory}/*.bcsymbolmap")
|
140
|
+
UI.message("Compressing #{available_bcsymbolmaps.count} bcsymbolmap(s)") unless Gym.config[:silent]
|
141
|
+
command = "cd '#{bcsymbolmaps_directory}' && zip -rg '#{output_path}' *.bcsymbolmap"
|
142
|
+
Helper.backticks(command, print: !Gym.config[:silent])
|
143
|
+
end
|
138
144
|
puts("") # new line
|
139
145
|
|
140
146
|
UI.success("Successfully exported and compressed dSYM 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.81.0.beta.
|
4
|
+
version: 2.81.0.beta.20180212010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fumiya Nakamura
|
@@ -25,7 +25,7 @@ authors:
|
|
25
25
|
autorequire:
|
26
26
|
bindir: bin
|
27
27
|
cert_chain: []
|
28
|
-
date: 2018-02-
|
28
|
+
date: 2018-02-12 00:00:00.000000000 Z
|
29
29
|
dependencies:
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: slack-notifier
|