fastlane-plugin-screenshotbot 0.2.0 → 0.3.1
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: 612d5bcd1652cdd79d1cff8761b0ad44c5ce0f4f9a049e3a6714b78cae51b4dd
|
|
4
|
+
data.tar.gz: 64d7894849734615a9bc589b188522a7dc3b912239f2be9962ff7e0d5d475629
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39835ed83c5e90888837c59cd455173bb1ac82af6064f60f4b0825bcfab9ceb1a7a51f458d9149301dd1e14b0a40a4b84e341506f002a8e49183fce6f07d64d1
|
|
7
|
+
data.tar.gz: 5befb2571a195637ac325b8ea824cc964c281e122a54e82a908cff1c27cf28eedf1f028987f0cd4bf20d07c9df6ec0858325d46a88e1cac94753e86527c7f705
|
data/LICENSE
CHANGED
|
@@ -10,7 +10,8 @@ module Fastlane
|
|
|
10
10
|
channel: "channel",
|
|
11
11
|
api_key: "api-key",
|
|
12
12
|
api_secret: "api-secret",
|
|
13
|
-
repo_url: "repo-url"
|
|
13
|
+
repo_url: "repo-url",
|
|
14
|
+
api_hostname: "api-hostname"
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
command_params = {}
|
|
@@ -24,6 +25,7 @@ module Fastlane
|
|
|
24
25
|
command_params[:api_key] = params[:api_key]
|
|
25
26
|
command_params[:api_secret] = params[:api_secret]
|
|
26
27
|
command_params[:repo_url] = params[:repo_url]
|
|
28
|
+
command_params[:api_hostname] = params[:api_hostname]
|
|
27
29
|
|
|
28
30
|
command_params = command_params.compact
|
|
29
31
|
command_params = command_params.map do |k, v|
|
|
@@ -87,12 +89,17 @@ module Fastlane
|
|
|
87
89
|
type: Boolean,
|
|
88
90
|
default_value: false),
|
|
89
91
|
FastlaneCore::ConfigItem.new(key: :pr_destination,
|
|
90
|
-
description: "Pull request destination branch",
|
|
92
|
+
description: "Pull request destination branch (required if is_pr is true)",
|
|
91
93
|
env_name: "SCREENSHOTBOT_PR_DESTINATION_BRANCH",
|
|
92
94
|
type: String,
|
|
93
95
|
optional: true),
|
|
96
|
+
FastlaneCore::ConfigItem.new(key: :api_hostname,
|
|
97
|
+
description: "Alternative API hostname",
|
|
98
|
+
env_name: "SCREENSHOTBOT_API_HOST",
|
|
99
|
+
type: String,
|
|
100
|
+
optional: true),
|
|
94
101
|
FastlaneCore::ConfigItem.new(key: :git_branch,
|
|
95
|
-
description: "The current git branch",
|
|
102
|
+
description: "The current git branch (required if is_pr is false)",
|
|
96
103
|
env_name: "SCREENSHOTBOT_CURRENT_BRANCH",
|
|
97
104
|
type: String,
|
|
98
105
|
optional: false),
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-screenshotbot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Apadmi Limited
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane
|
|
@@ -16,15 +16,15 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 2.
|
|
19
|
+
version: 2.220.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 2.
|
|
27
|
-
description:
|
|
26
|
+
version: 2.220.0
|
|
27
|
+
description:
|
|
28
28
|
email: opensource@apadmi.com
|
|
29
29
|
executables: []
|
|
30
30
|
extensions: []
|
|
@@ -41,7 +41,7 @@ licenses:
|
|
|
41
41
|
- MIT
|
|
42
42
|
metadata:
|
|
43
43
|
rubygems_mfa_required: 'true'
|
|
44
|
-
post_install_message:
|
|
44
|
+
post_install_message:
|
|
45
45
|
rdoc_options: []
|
|
46
46
|
require_paths:
|
|
47
47
|
- lib
|
|
@@ -57,8 +57,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
59
|
rubygems_version: 3.4.10
|
|
60
|
-
signing_key:
|
|
60
|
+
signing_key:
|
|
61
61
|
specification_version: 4
|
|
62
|
-
summary: Fastlane
|
|
62
|
+
summary: Fastlane plugin to install the Screenshotbot recorder tool and upload your
|
|
63
63
|
screenshots
|
|
64
64
|
test_files: []
|