fastlane-plugin-accessibility_test 0.1.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +52 -0
- data/lib/bin/accessibility-analyzer.jar +0 -0
- data/lib/fastlane/plugin/accessibility_test.rb +16 -0
- data/lib/fastlane/plugin/accessibility_test/actions/accessibility_test_action.rb +197 -0
- data/lib/fastlane/plugin/accessibility_test/helper/accessibility_evaluation_pb.rb +30 -0
- data/lib/fastlane/plugin/accessibility_test/helper/github_notifier.rb +24 -0
- data/lib/fastlane/plugin/accessibility_test/helper/helper.rb +9 -0
- data/lib/fastlane/plugin/accessibility_test/version.rb +5 -0
- metadata +178 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 42f17b7ed13f8635921271d919a2cd82ca81c900
|
4
|
+
data.tar.gz: 7118da68aae6a03277e8167a4db453ef4ceb7407
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d6a7343e61be863dea59f6b25a0dbba39fb3d6993e09d9262c5e0a70bfa6281435dbed17f2e11b025df0d7647909d286b57cf63e178d2fb33ccb994248206a94
|
7
|
+
data.tar.gz: a055ca9cd34639467a2d32255b0025a5e50d5e37c258b959cb84e3f9d8b1309d1a2d9c9ea2be0e02687994d3c8b20356c57f4eb73564734b6eed30d52036af2c
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Takeshi Tsukamoto <itometeam@gmail.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
# accessibility_test plugin
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-accessibility_test)
|
4
|
+
|
5
|
+
## Getting Started
|
6
|
+
|
7
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-accessibility_test`, add it to your project by running:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
fastlane add_plugin accessibility_test
|
11
|
+
```
|
12
|
+
|
13
|
+
## About accessibility_test
|
14
|
+
|
15
|
+
Accessibility test with Firebase Test Lab for Android.
|
16
|
+
|
17
|
+
**Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
|
18
|
+
|
19
|
+
## Example
|
20
|
+
|
21
|
+
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
|
22
|
+
|
23
|
+
**Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
|
24
|
+
|
25
|
+
## Run tests for this plugin
|
26
|
+
|
27
|
+
To run both the tests, and code style validation, run
|
28
|
+
|
29
|
+
```
|
30
|
+
rake
|
31
|
+
```
|
32
|
+
|
33
|
+
To automatically fix many of the styling issues, use
|
34
|
+
```
|
35
|
+
rubocop -a
|
36
|
+
```
|
37
|
+
|
38
|
+
## Issues and Feedback
|
39
|
+
|
40
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
41
|
+
|
42
|
+
## Troubleshooting
|
43
|
+
|
44
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
45
|
+
|
46
|
+
## Using _fastlane_ Plugins
|
47
|
+
|
48
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
49
|
+
|
50
|
+
## About _fastlane_
|
51
|
+
|
52
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane/plugin/accessibility_test/version'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module AccessibilityTest
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
+
def self.all_classes
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# By default we want to import all available actions and helpers
|
13
|
+
# A plugin can contain any number of actions and plugins
|
14
|
+
Fastlane::AccessibilityTest.all_classes.each do |current|
|
15
|
+
require current
|
16
|
+
end
|
@@ -0,0 +1,197 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require_relative '../helper/accessibility_evaluation_pb'
|
3
|
+
require_relative '../helper/github_notifier'
|
4
|
+
require_relative '../helper/helper'
|
5
|
+
|
6
|
+
module Fastlane
|
7
|
+
module Actions
|
8
|
+
class AccessibilityTestAction < Action
|
9
|
+
def self.run(params)
|
10
|
+
download_dir = params[:download_dir]
|
11
|
+
firebase_test_lab_results_bucket = params[:firebase_test_lab_results_bucket] == nil ? "#{params[:project_id]}_test_results" : params[:firebase_test_lab_results_bucket]
|
12
|
+
firebase_test_lab_results_dir = "firebase_test_result_#{DateTime.now.strftime('%Y-%m-%d-%H:%M:%S')}"
|
13
|
+
devices = params[:devices]
|
14
|
+
device_names = devices.map(&method(:device_name))
|
15
|
+
results = []
|
16
|
+
|
17
|
+
Fastlane::Actions::FirebaseTestLabAndroidAction.run(
|
18
|
+
project_id: params[:project_id],
|
19
|
+
gcloud_service_key_file: params[:gcloud_service_key_file],
|
20
|
+
type: "robo",
|
21
|
+
devices: devices,
|
22
|
+
app_apk: params[:app_apk],
|
23
|
+
console_log_file_name: "#{download_dir}/firebase_os_test_console.log",
|
24
|
+
timeout: params[:timeout],
|
25
|
+
notify_to_slack: false,
|
26
|
+
extra_options: "--results-bucket #{firebase_test_lab_results_bucket} --results-dir #{firebase_test_lab_results_dir} --no-record-video"
|
27
|
+
)
|
28
|
+
|
29
|
+
UI.message "Fetch screenshots and accessibility meta data from Firebase Test Lab results bucket"
|
30
|
+
device_names.each do |device_name|
|
31
|
+
`mkdir -p #{download_dir}/#{device_name}`
|
32
|
+
Action.sh "gsutil -m rsync -d -r gs://#{firebase_test_lab_results_bucket}/#{firebase_test_lab_results_dir}/#{device_name}/artifacts #{download_dir}/#{device_name}"
|
33
|
+
end
|
34
|
+
|
35
|
+
UI.message "Execute accessibility check"
|
36
|
+
executable = File.expand_path('../../../../../bin/accessibility-analyzer.jar', __FILE__)
|
37
|
+
device_names.each do |device_name|
|
38
|
+
Action.sh "java -jar #{executable} --target=#{download_dir}/#{device_name}"
|
39
|
+
end
|
40
|
+
|
41
|
+
UI.message "Push screenshots and accessibility meta data from Firebase Test Lab results bucket"
|
42
|
+
device_names.each do |device_name|
|
43
|
+
`mkdir -p #{download_dir}/#{device_name}`
|
44
|
+
Action.sh "gsutil -m rsync -d -r #{download_dir}/#{device_name} gs://#{firebase_test_lab_results_bucket}/#{firebase_test_lab_results_dir}/#{device_name}/artifacts"
|
45
|
+
end
|
46
|
+
|
47
|
+
UI.message "Extract test result"
|
48
|
+
device_names.each do |device_name|
|
49
|
+
entries = Dir::entries("#{download_dir}/#{device_name}")
|
50
|
+
entries = entries.select { |entry| entry =~ /accessibility[0-9]+_check_result[0-9]+.meta/ }
|
51
|
+
for entry in entries do
|
52
|
+
filePath = "#{download_dir}/#{device_name}/#{entry}"
|
53
|
+
File.open(filePath, "r") do |file|
|
54
|
+
proto = Proto::AccessibilityHierarchyCheckResultProto.decode(file.read())
|
55
|
+
results.push(
|
56
|
+
{
|
57
|
+
title: proto.title,
|
58
|
+
message: proto.message,
|
59
|
+
image: Helper.firebase_object_url(firebase_test_lab_results_bucket, "#{firebase_test_lab_results_dir}/#{device_name}/artifacts/#{File.basename(filePath, ".meta")}.png")
|
60
|
+
}
|
61
|
+
)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
UI.message "Notify to GitHub"
|
67
|
+
notify_github(params, results)
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.notify_github(params, results)
|
71
|
+
return if params[:github_pr_number] == nil
|
72
|
+
|
73
|
+
summary = results.empty? ? "### :white_check_mark: All test passed" : "### :x: #{results.length} error found."
|
74
|
+
cells = results.map {|result|
|
75
|
+
"|<img src=\"#{result[:image]}\">|**#{result[:title]}**<br/>#{result[:message]}|\n"
|
76
|
+
}.inject(&:+)
|
77
|
+
|
78
|
+
message = <<-EOS
|
79
|
+
## Accessibility Test Result
|
80
|
+
#{summary}
|
81
|
+
|
82
|
+
|Screenshot|message|
|
83
|
+
|-|-|
|
84
|
+
#{cells}
|
85
|
+
EOS
|
86
|
+
|
87
|
+
UI.message message
|
88
|
+
GitHubNotifier.put_comment(
|
89
|
+
params[:github_owner],
|
90
|
+
params[:github_repository],
|
91
|
+
params[:github_pr_number],
|
92
|
+
message,
|
93
|
+
params[:github_api_token]
|
94
|
+
)
|
95
|
+
end
|
96
|
+
|
97
|
+
def self.device_name(device)
|
98
|
+
"#{device[:model]}-#{device[:version]}-#{device[:locale]}-#{device[:orientation]}"
|
99
|
+
end
|
100
|
+
|
101
|
+
def self.description
|
102
|
+
"Accessibility test with Firebase Test Lab for Android."
|
103
|
+
end
|
104
|
+
|
105
|
+
def self.details
|
106
|
+
"Accessibility test with Firebase Test Lab for Android."
|
107
|
+
end
|
108
|
+
|
109
|
+
def self.authors
|
110
|
+
["Takeshi Tsukamoto"]
|
111
|
+
end
|
112
|
+
|
113
|
+
def self.available_options
|
114
|
+
[
|
115
|
+
FastlaneCore::ConfigItem.new(key: :project_id,
|
116
|
+
env_name: "PROJECT_ID",
|
117
|
+
description: "Your Firebase project id",
|
118
|
+
type: String,
|
119
|
+
optional: false),
|
120
|
+
FastlaneCore::ConfigItem.new(key: :gcloud_service_key_file,
|
121
|
+
env_name: "GCLOUD_SERVICE_KEY_FILE",
|
122
|
+
description: "File path containing the gcloud auth key. Default: Created from GCLOUD_SERVICE_KEY environment variable",
|
123
|
+
type: String,
|
124
|
+
optional: false),
|
125
|
+
FastlaneCore::ConfigItem.new(key: :devices,
|
126
|
+
env_name: "DEVICES",
|
127
|
+
description: "Devices to test the app on",
|
128
|
+
type: Array,
|
129
|
+
verify_block: proc do |value|
|
130
|
+
UI.user_error!("Devices have to be at least one") if value.empty?
|
131
|
+
value.each do |device|
|
132
|
+
check_has_property(device, :model)
|
133
|
+
check_has_property(device, :version)
|
134
|
+
set_default_property(device, :locale, "en_US")
|
135
|
+
set_default_property(device, :orientation, "portrait")
|
136
|
+
end
|
137
|
+
end),
|
138
|
+
FastlaneCore::ConfigItem.new(key: :app_apk,
|
139
|
+
env_name: "APP_APK",
|
140
|
+
description: "The path for your android app apk",
|
141
|
+
type: String,
|
142
|
+
optional: false),
|
143
|
+
FastlaneCore::ConfigItem.new(key: :timeout,
|
144
|
+
env_name: "TIMEOUT",
|
145
|
+
description: "The max time this test execution can run before it is cancelled. Default: 5m (this value must be greater than or equal to 1m)",
|
146
|
+
type: String,
|
147
|
+
optional: true,
|
148
|
+
default_value: "5m"),
|
149
|
+
FastlaneCore::ConfigItem.new(key: :firebase_test_lab_results_bucket,
|
150
|
+
env_name: "FIREBASE_TEST_LAB_RESULTS_BUCKET",
|
151
|
+
description: "Name of Firebase Test Lab results bucket",
|
152
|
+
type: String,
|
153
|
+
optional: true),
|
154
|
+
FastlaneCore::ConfigItem.new(key: :download_dir,
|
155
|
+
env_name: "DOWNLOAD_DIR",
|
156
|
+
description: "Target directory to download screenshots from firebase",
|
157
|
+
type: String,
|
158
|
+
optional: false),
|
159
|
+
FastlaneCore::ConfigItem.new(key: :github_owner,
|
160
|
+
env_name: "GITHUB_OWNER",
|
161
|
+
description: "Owner name",
|
162
|
+
type: String,
|
163
|
+
optional: false),
|
164
|
+
FastlaneCore::ConfigItem.new(key: :github_repository,
|
165
|
+
env_name: "GITHUB_REPOSITORY",
|
166
|
+
description: "Repository name",
|
167
|
+
type: String,
|
168
|
+
optional: false),
|
169
|
+
FastlaneCore::ConfigItem.new(key: :github_pr_number,
|
170
|
+
env_name: "GITHUB_PR_NUMBER",
|
171
|
+
description: "Pull request number",
|
172
|
+
type: String,
|
173
|
+
optional: true),
|
174
|
+
FastlaneCore::ConfigItem.new(key: :github_api_token,
|
175
|
+
env_name: "GITHUB_API_TOKEN",
|
176
|
+
description: "GitHub API Token",
|
177
|
+
type: String,
|
178
|
+
optional: false),
|
179
|
+
]
|
180
|
+
end
|
181
|
+
|
182
|
+
def self.is_supported?(platform)
|
183
|
+
platform == :android
|
184
|
+
end
|
185
|
+
|
186
|
+
def self.check_has_property(hash_obj, property)
|
187
|
+
UI.user_error!("Each device must have #{property} property") unless hash_obj.key?(property)
|
188
|
+
end
|
189
|
+
|
190
|
+
def self.set_default_property(hash_obj, property, default)
|
191
|
+
unless hash_obj.key?(property)
|
192
|
+
hash_obj[property] = default
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: AccessibilityEvaluation.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
7
|
+
add_file("AccessibilityEvaluation.proto", :syntax => :proto2) do
|
8
|
+
add_message "proto.AccessibilityHierarchyCheckResultProto" do
|
9
|
+
optional :source_check_class, :string, 1
|
10
|
+
optional :result_id, :int32, 2
|
11
|
+
optional :result_type, :enum, 3, "proto.ResultTypeProto"
|
12
|
+
optional :hierarchy_source_id, :int64, 4
|
13
|
+
optional :title, :string, 6
|
14
|
+
optional :message, :string, 7
|
15
|
+
end
|
16
|
+
add_enum "proto.ResultTypeProto" do
|
17
|
+
value :UNKNOWN, 0
|
18
|
+
value :ERROR, 1
|
19
|
+
value :WARNING, 2
|
20
|
+
value :INFO, 3
|
21
|
+
value :NOT_RUN, 4
|
22
|
+
value :SUPPRESSED, 5
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
module Proto
|
28
|
+
AccessibilityHierarchyCheckResultProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("proto.AccessibilityHierarchyCheckResultProto").msgclass
|
29
|
+
ResultTypeProto = Google::Protobuf::DescriptorPool.generated_pool.lookup("proto.ResultTypeProto").enummodule
|
30
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'fastlane_core/ui/ui'
|
2
|
+
require 'json'
|
3
|
+
require 'net/http'
|
4
|
+
require 'uri'
|
5
|
+
|
6
|
+
module Fastlane
|
7
|
+
module GitHubNotifier
|
8
|
+
def self.put_comment(github_owner, github_repository, github_pr_number, body, github_api_token)
|
9
|
+
api_url = "https://api.github.com/repos/#{github_owner}/#{github_repository}/issues/#{github_pr_number}/comments"
|
10
|
+
UI.message "put comment #{api_url}"
|
11
|
+
|
12
|
+
uri = URI.parse(api_url)
|
13
|
+
req = Net::HTTP::Post.new(uri)
|
14
|
+
req["Content-Type"] = "application/json"
|
15
|
+
req["Authorization"] = "token #{github_api_token}"
|
16
|
+
req.body = {:body => body}.to_json
|
17
|
+
|
18
|
+
res = Net::HTTP.start(uri.hostname, uri.port, {use_ssl: uri.scheme = "https"}) {|http| http.request(req)}
|
19
|
+
UI.message "#{res.code}\n#{res.body}"
|
20
|
+
|
21
|
+
res
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,178 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastlane-plugin-accessibility_test
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Takeshi Tsukamoto
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-09-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: pry
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec_junit_formatter
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.49.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.49.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-require_tools
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: fastlane
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.130.0
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.130.0
|
139
|
+
description:
|
140
|
+
email: itometeam@gmail.com
|
141
|
+
executables: []
|
142
|
+
extensions: []
|
143
|
+
extra_rdoc_files: []
|
144
|
+
files:
|
145
|
+
- LICENSE
|
146
|
+
- README.md
|
147
|
+
- lib/bin/accessibility-analyzer.jar
|
148
|
+
- lib/fastlane/plugin/accessibility_test.rb
|
149
|
+
- lib/fastlane/plugin/accessibility_test/actions/accessibility_test_action.rb
|
150
|
+
- lib/fastlane/plugin/accessibility_test/helper/accessibility_evaluation_pb.rb
|
151
|
+
- lib/fastlane/plugin/accessibility_test/helper/github_notifier.rb
|
152
|
+
- lib/fastlane/plugin/accessibility_test/helper/helper.rb
|
153
|
+
- lib/fastlane/plugin/accessibility_test/version.rb
|
154
|
+
homepage: https://github.com/cats-oss/fastlane-plugin-accessibility_test
|
155
|
+
licenses:
|
156
|
+
- MIT
|
157
|
+
metadata: {}
|
158
|
+
post_install_message:
|
159
|
+
rdoc_options: []
|
160
|
+
require_paths:
|
161
|
+
- lib
|
162
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '0'
|
172
|
+
requirements: []
|
173
|
+
rubyforge_project:
|
174
|
+
rubygems_version: 2.5.2.3
|
175
|
+
signing_key:
|
176
|
+
specification_version: 4
|
177
|
+
summary: Accessibility test with Firebase Test Lab for Android.
|
178
|
+
test_files: []
|