fastlane-plugin-accessibility_test 0.1.10 → 0.1.11
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f148348b241ccd1bd2f2b3f6cd49682cc3468d1b4656137db013e11cba8fcf4b
|
|
4
|
+
data.tar.gz: f61bbd3e9db3199a34a957b93701fbce1932a1d06102f8f637c393470036ddc8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58a2114e84415d56c92cfc9330e7acb804b9b1b24200724788d410e266a203e767e21be3ec1b4ff0c34e1ccb7ff1ab7317e4d1d7f19f83c6f3bb86cd38650a74
|
|
7
|
+
data.tar.gz: 5fd3e8b429f637ed2fb93cfe9a616cd10495a99c2dae7598724680e8891ee0e3a38ea6cc9cfd7e87e2b09a43fe7257f3161f183ace3550b18b888973b941def6
|
|
@@ -88,10 +88,19 @@ module Fastlane
|
|
|
88
88
|
message = <<-EOS
|
|
89
89
|
## Accessibility Test Result
|
|
90
90
|
#{summary}
|
|
91
|
+
EOS
|
|
92
|
+
|
|
93
|
+
if !errors.empty? do
|
|
94
|
+
message << <<-EOS
|
|
91
95
|
|
|
92
96
|
|Screenshot|message|Screenshot|message|
|
|
93
97
|
|-|-|-|-|
|
|
94
98
|
#{error_cells}
|
|
99
|
+
EOS
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
if params[:enable_warning] && !warnings.empty? do
|
|
103
|
+
message << <<-EOS
|
|
95
104
|
|
|
96
105
|
<details>
|
|
97
106
|
<summary>#{warnings.length} warnings. Click here to see details.</summary>
|
|
@@ -102,6 +111,7 @@ module Fastlane
|
|
|
102
111
|
|
|
103
112
|
</details>
|
|
104
113
|
EOS
|
|
114
|
+
end
|
|
105
115
|
|
|
106
116
|
UI.message message
|
|
107
117
|
|
|
@@ -215,6 +225,12 @@ module Fastlane
|
|
|
215
225
|
description: "GitHub API Token",
|
|
216
226
|
type: String,
|
|
217
227
|
optional: false),
|
|
228
|
+
FastlaneCore::ConfigItem.new(key: :enable_warning,
|
|
229
|
+
env_name: "ENABLE_WARNING",
|
|
230
|
+
description: "Should show warning in output",
|
|
231
|
+
is_string: false,
|
|
232
|
+
default_value: true,
|
|
233
|
+
optional: true),
|
|
218
234
|
]
|
|
219
235
|
end
|
|
220
236
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-accessibility_test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takeshi Tsukamoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-09-
|
|
11
|
+
date: 2019-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-protobuf
|