fastlane-plugin-automated_test_emulator_run_next 1.0.1 → 1.0.2
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/LICENSE +0 -0
- data/README.md +4 -4
- data/lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb +1 -0
- data/lib/fastlane/plugin/automated_test_emulator_run/factory/adb_controller_factory.rb +0 -0
- data/lib/fastlane/plugin/automated_test_emulator_run/factory/avd_controller_factory.rb +0 -0
- data/lib/fastlane/plugin/automated_test_emulator_run/helper/sdk_tools_helper.rb +1 -1
- data/lib/fastlane/plugin/automated_test_emulator_run/provider/avd_setup_provider.rb +0 -0
- data/lib/fastlane/plugin/automated_test_emulator_run/version.rb +2 -2
- data/lib/fastlane/plugin/automated_test_emulator_run_next.rb +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15f9b6cb75b17dee48b9ea8d6c914e011969fe82f0f9925f9d8e819ef13091ed
|
4
|
+
data.tar.gz: 3e287cbe9636344669abf1d01e13e002d26265683299cc6a4f0663748ccf1ff0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39fdf0572412c212b5cb747116cef5741cf8f3a0e0522f1b5aba343dfffa07c81482edf1ddee3dc284ad98d0d0f3f1cba4f52d6a378ddae122cac24b85da2b7f
|
7
|
+
data.tar.gz: 7bcf269703f7ed395bd331c3b5ef2bfcad8bfba70d39eab9d1fde7302516bde93448fdcde44113dabcfdb4d7a8f18b1dab7abd0b1c67d585139fe67beb46ca56
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# automated_test_emulator_run_next plugin
|
2
2
|
|
3
|
-
[](https://rubygems.org/gems/fastlane-plugin-
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-automated_test_emulator_run_next)
|
4
4
|
|
5
5
|
## About this fork
|
6
6
|
|
@@ -14,10 +14,10 @@ Starts any number of AVDs. AVDs are created and configured automatically accordi
|
|
14
14
|
|
15
15
|
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin.
|
16
16
|
|
17
|
-
1. To get started with `fastlane-plugin-
|
17
|
+
1. To get started with `fastlane-plugin-automated_test_emulator_run_next`, add it to your project by running:
|
18
18
|
|
19
19
|
```bash
|
20
|
-
fastlane add_plugin
|
20
|
+
fastlane add_plugin automated_test_emulator_run_next
|
21
21
|
```
|
22
22
|
2. Create your \*.JSON config file to create AVD launch plan according to schema below/provided example.
|
23
23
|
|
data/lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb
CHANGED
@@ -477,6 +477,7 @@ module Fastlane
|
|
477
477
|
env_name: "LANE_PLATFORM",
|
478
478
|
description: "The platform of the lane you want to execute",
|
479
479
|
conflicting_options: [:shell_command, :gradle_task],
|
480
|
+
default_value: 'android',
|
480
481
|
is_string: true,
|
481
482
|
optional: true),
|
482
483
|
FastlaneCore::ConfigItem.new(key: :lane_options,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-automated_test_emulator_run_next
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroto Nakamura
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '0'
|
130
130
|
requirements: []
|
131
|
-
rubygems_version: 3.1
|
131
|
+
rubygems_version: 3.0.3.1
|
132
132
|
signing_key:
|
133
133
|
specification_version: 4
|
134
134
|
summary: Starts multiple AVDs based on JSON file config. AVDs are created and configured
|