fastlane 2.55.0.beta.20170826010003 → 2.55.0.beta.20170829010003
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d8d8158cdeb0a7433635b0762b76191886d81b1
|
4
|
+
data.tar.gz: f965edd8f3d61c8c4aed23880abd29cb34db7eaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1399142ceaad9dcd85e840d0c0cb0d49a90ca6d9d01d03305915b736ba70c77cbb7053c7432d6a261c1d642ee97df300d45fbbd8f939f0a253c5d06604cf070f
|
7
|
+
data.tar.gz: 02fa1bcad9542a2d3e9db789649d1f326a2579748125f8fe52a6c0e104d5d77001112aeeaad7d3d1d0857abadb5e3b0927d73a18af3e8b13b62b99121b5bd881
|
@@ -70,12 +70,10 @@ module Deliver
|
|
70
70
|
|
71
71
|
def collect_screenshots(options)
|
72
72
|
return [] if options[:skip_screenshots]
|
73
|
-
return collect_screenshots_for_languages(options)
|
73
|
+
return collect_screenshots_for_languages(options[:screenshots_path])
|
74
74
|
end
|
75
75
|
|
76
|
-
def collect_screenshots_for_languages(
|
77
|
-
path = options[:screenshots_path]
|
78
|
-
|
76
|
+
def collect_screenshots_for_languages(path)
|
79
77
|
screenshots = []
|
80
78
|
extensions = '{png,jpg,jpeg}'
|
81
79
|
|
@@ -5,9 +5,10 @@ module Fastlane
|
|
5
5
|
end
|
6
6
|
|
7
7
|
class SlatherAction < Action
|
8
|
-
# https://github.com/SlatherOrg/slather/blob/
|
8
|
+
# https://github.com/SlatherOrg/slather/blob/v2.4.2/lib/slather/command/coverage_command.rb
|
9
9
|
ARGS_MAP = {
|
10
10
|
travis: '--travis',
|
11
|
+
travis_pro: '--travis-pro',
|
11
12
|
circleci: '--circleci',
|
12
13
|
jenkins: '--jenkins',
|
13
14
|
buildkite: '--buildkite',
|
@@ -163,6 +164,11 @@ Slather is available at https://github.com/SlatherOrg/slather
|
|
163
164
|
description: "Tell slather that it is running on TravisCI",
|
164
165
|
is_string: false,
|
165
166
|
optional: true),
|
167
|
+
FastlaneCore::ConfigItem.new(key: :travis_pro,
|
168
|
+
env_name: "FL_SLATHER_TRAVIS_PRO_ENABLED", # The name of the environment variable
|
169
|
+
description: "Tell slather that it is running on TravisCI Pro",
|
170
|
+
is_string: false,
|
171
|
+
optional: true),
|
166
172
|
FastlaneCore::ConfigItem.new(key: :circleci,
|
167
173
|
env_name: "FL_SLATHER_CIRCLECI_ENABLED",
|
168
174
|
description: "Tell slather that it is running on CircleCI",
|
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.55.0.beta.
|
4
|
+
version: 2.55.0.beta.20170829010003
|
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-08-
|
18
|
+
date: 2017-08-29 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -205,6 +205,20 @@ dependencies:
|
|
205
205
|
- - "~>"
|
206
206
|
- !ruby/object:Gem::Version
|
207
207
|
version: 1.0.0
|
208
|
+
- !ruby/object:Gem::Dependency
|
209
|
+
name: public_suffix
|
210
|
+
requirement: !ruby/object:Gem::Requirement
|
211
|
+
requirements:
|
212
|
+
- - "~>"
|
213
|
+
- !ruby/object:Gem::Version
|
214
|
+
version: 2.0.0
|
215
|
+
type: :runtime
|
216
|
+
prerelease: false
|
217
|
+
version_requirements: !ruby/object:Gem::Requirement
|
218
|
+
requirements:
|
219
|
+
- - "~>"
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: 2.0.0
|
208
222
|
- !ruby/object:Gem::Dependency
|
209
223
|
name: tty-screen
|
210
224
|
requirement: !ruby/object:Gem::Requirement
|