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: 6da0791213788bcf8d133967cc501c8ed3a613cb9d894d53005f5100cb13ab8f
4
- data.tar.gz: ad2328fb402f2cf19ccbf6bde24e7117619a9f49ef129601df04cf240c03a60f
3
+ metadata.gz: 612d5bcd1652cdd79d1cff8761b0ad44c5ce0f4f9a049e3a6714b78cae51b4dd
4
+ data.tar.gz: 64d7894849734615a9bc589b188522a7dc3b912239f2be9962ff7e0d5d475629
5
5
  SHA512:
6
- metadata.gz: b856574f0b384e83a4fc4a440959acaa6fa070c1f698d6647a5cddf5e03761c3fe6dc14c86a25e11b95aff250f4848aaaf462255a529e24ed89555d8de82300a
7
- data.tar.gz: e74a4c13ecb67007b4f32c45d1a618e202c96f0f46fb7992d22389a3a9db94da76ef8b005afd81f28fea32d2785b6e924da2538b87dc7078388d72d4f810e517
6
+ metadata.gz: 39835ed83c5e90888837c59cd455173bb1ac82af6064f60f4b0825bcfab9ceb1a7a51f458d9149301dd1e14b0a40a4b84e341506f002a8e49183fce6f07d64d1
7
+ data.tar.gz: 5befb2571a195637ac325b8ea824cc964c281e122a54e82a908cff1c27cf28eedf1f028987f0cd4bf20d07c9df6ec0858325d46a88e1cac94753e86527c7f705
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 Apadmi Limited
3
+ Copyright (c) 2024 Apadmi Limited
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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),
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Screenshotbot
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
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.2.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: 2023-10-09 00:00:00.000000000 Z
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.216.0
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.216.0
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 pluging to install the Screenshotbot recorder tool and upload your
62
+ summary: Fastlane plugin to install the Screenshotbot recorder tool and upload your
63
63
  screenshots
64
64
  test_files: []