fastlane-plugin-sq_ci_tools 1.0.0 → 1.0.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 +4 -4
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_build_ios_application_action.rb +6 -6
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_app_version_string_action.rb +4 -4
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_bundle_identifier_action.rb +2 -2
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_last_version_code_from_google_play_action.rb +6 -6
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_team_identifier_action.rb +2 -2
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_prepare_keychain_action.rb +2 -2
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_send_telegram_message_action.rb +3 -3
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_set_version_code_action.rb +2 -2
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_aab_to_google_play_action.rb +6 -6
- data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_file_to_s3_action.rb +2 -2
- data/lib/{sq_ci_tools/android_app/options.rb → fastlane/plugin/sq_ci_tools/options/android_app.rb} +7 -4
- data/lib/{sq_ci_tools/code_signing/options.rb → fastlane/plugin/sq_ci_tools/options/code_signing.rb} +8 -4
- data/lib/{sq_ci_tools/google_play/options.rb → fastlane/plugin/sq_ci_tools/options/google_play.rb} +8 -4
- data/lib/{sq_ci_tools/ios_app/options.rb → fastlane/plugin/sq_ci_tools/options/ios_app.rb} +7 -3
- data/lib/{sq_ci_tools/keychain/options.rb → fastlane/plugin/sq_ci_tools/options/keychain.rb} +8 -4
- data/lib/{sq_ci_tools/s3/options.rb → fastlane/plugin/sq_ci_tools/options/s3.rb} +8 -4
- data/lib/{sq_ci_tools/shared/options.rb → fastlane/plugin/sq_ci_tools/options/shared.rb} +8 -4
- data/lib/{sq_ci_tools/telegram/options.rb → fastlane/plugin/sq_ci_tools/options/telegram.rb} +8 -4
- data/lib/fastlane/plugin/sq_ci_tools/version.rb +1 -1
- data/lib/fastlane/plugin/sq_ci_tools.rb +2 -2
- metadata +11 -12
- data/lib/sq_ci_tools/sq_ci_tools.rb +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5bc4d4c00ae2a7ea46a255ce03b0a3d1b83226fba8dff7865bbb82627368e8b8
|
4
|
+
data.tar.gz: c6803c7957588be3e51fd898dc609018b251712cea4f90b35501ec649006127e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b572bd5a7bd21d0e1d15347ba32ba37603ac5fc58b3f0fb35bcf06580b1a2ceb1b8f7a477cc938201f3e1b5986bfc276c8e105f3aaa4cb4b07e96a940f6dab0c
|
7
|
+
data.tar.gz: 57229688080e28735b84cc0d3e8360a5e5ad1bffd8a3b5ac7bbb55fff2bf153af668360a05117c0978e85a9121630b8d1472aebfe4a8d9560474bb2133f7a1c2
|
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
4
|
-
require_relative '
|
5
|
-
require_relative '
|
3
|
+
require_relative '../options/keychain'
|
4
|
+
require_relative '../options/ios_app'
|
5
|
+
require_relative '../options/code_signing'
|
6
6
|
|
7
7
|
module Fastlane
|
8
8
|
module Actions
|
@@ -108,9 +108,9 @@ module Fastlane
|
|
108
108
|
default_value: true
|
109
109
|
)
|
110
110
|
] +
|
111
|
-
::
|
112
|
-
::
|
113
|
-
::
|
111
|
+
Options::CodeSigning.options +
|
112
|
+
Options::Keychain.options +
|
113
|
+
Options::IosApp.options
|
114
114
|
end
|
115
115
|
|
116
116
|
def self.return_value
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
4
|
-
require_relative '
|
3
|
+
require_relative '../options/ios_app'
|
4
|
+
require_relative '../options/android_app'
|
5
5
|
|
6
6
|
module Fastlane
|
7
7
|
module Actions
|
@@ -54,8 +54,8 @@ module Fastlane
|
|
54
54
|
type: Boolean
|
55
55
|
)
|
56
56
|
] +
|
57
|
-
::
|
58
|
-
::
|
57
|
+
Options::AndroidApp.options +
|
58
|
+
Options::IosApp.options
|
59
59
|
end
|
60
60
|
|
61
61
|
def self.return_value
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
3
|
+
require_relative '../options/ios_app'
|
4
4
|
|
5
5
|
module Fastlane
|
6
6
|
module Actions
|
@@ -32,7 +32,7 @@ module Fastlane
|
|
32
32
|
type: String
|
33
33
|
)
|
34
34
|
] +
|
35
|
-
::
|
35
|
+
Options::IosApp.options
|
36
36
|
end
|
37
37
|
|
38
38
|
def self.return_value
|
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
4
|
-
require_relative '
|
5
|
-
require_relative '
|
3
|
+
require_relative '../options/google_play'
|
4
|
+
require_relative '../options/android_app'
|
5
|
+
require_relative '../options/shared'
|
6
6
|
|
7
7
|
module Fastlane
|
8
8
|
module Actions
|
@@ -34,9 +34,9 @@ module Fastlane
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def self.available_options
|
37
|
-
::
|
38
|
-
|
39
|
-
|
37
|
+
Options::GooglePlay.options +
|
38
|
+
Options::AndroidApp.options +
|
39
|
+
Options::Shared.options
|
40
40
|
end
|
41
41
|
|
42
42
|
def self.return_type
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
3
|
+
require_relative '../options/ios_app'
|
4
4
|
|
5
5
|
module Fastlane
|
6
6
|
module Actions
|
@@ -32,7 +32,7 @@ module Fastlane
|
|
32
32
|
type: String
|
33
33
|
)
|
34
34
|
] +
|
35
|
-
::
|
35
|
+
Options::IosApp.options
|
36
36
|
end
|
37
37
|
|
38
38
|
def self.return_value
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
3
|
+
require_relative '../options/keychain'
|
4
4
|
|
5
5
|
module Fastlane
|
6
6
|
module Actions
|
@@ -31,7 +31,7 @@ module Fastlane
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def self.available_options
|
34
|
-
::
|
34
|
+
Options::Keychain.options
|
35
35
|
end
|
36
36
|
|
37
37
|
def self.return_value
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'fastlane/action'
|
2
|
-
require_relative '../helper/sq_ci_tools_helper'
|
3
2
|
require 'net/http/post/multipart'
|
4
|
-
require_relative '
|
3
|
+
require_relative '../helper/sq_ci_tools_helper'
|
4
|
+
require_relative '../options/telegram'
|
5
5
|
|
6
6
|
module Fastlane
|
7
7
|
module Actions
|
@@ -45,7 +45,7 @@ module Fastlane
|
|
45
45
|
type: String
|
46
46
|
)
|
47
47
|
] +
|
48
|
-
::
|
48
|
+
Options::Telegram.options
|
49
49
|
end
|
50
50
|
|
51
51
|
def self.return_value
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
3
|
+
require_relative '../options/android_app'
|
4
4
|
|
5
5
|
module Fastlane
|
6
6
|
module Actions
|
@@ -29,7 +29,7 @@ module Fastlane
|
|
29
29
|
type: String
|
30
30
|
)
|
31
31
|
] +
|
32
|
-
::
|
32
|
+
Options::AndroidApp.options
|
33
33
|
end
|
34
34
|
|
35
35
|
def self.return_value
|
data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_aab_to_google_play_action.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
4
|
-
require_relative '
|
5
|
-
require_relative '
|
3
|
+
require_relative '../options/google_play'
|
4
|
+
require_relative '../options/android_app'
|
5
|
+
require_relative '../options/shared'
|
6
6
|
|
7
7
|
module Fastlane
|
8
8
|
module Actions
|
@@ -44,9 +44,9 @@ module Fastlane
|
|
44
44
|
type: String
|
45
45
|
)
|
46
46
|
] +
|
47
|
-
|
48
|
-
|
49
|
-
|
47
|
+
GooglePlay.options +
|
48
|
+
AndroidApp.options +
|
49
|
+
Shared.options
|
50
50
|
end
|
51
51
|
|
52
52
|
def self.return_type
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'fastlane/action'
|
2
2
|
require_relative '../helper/sq_ci_tools_helper'
|
3
|
-
require_relative '
|
3
|
+
require_relative '../options/s3'
|
4
4
|
require 'aws-sdk-core'
|
5
5
|
|
6
6
|
module Fastlane
|
@@ -61,7 +61,7 @@ module Fastlane
|
|
61
61
|
type: String
|
62
62
|
)
|
63
63
|
] +
|
64
|
-
::
|
64
|
+
Options::S3.options
|
65
65
|
end
|
66
66
|
|
67
67
|
def self.return_type
|
data/lib/{sq_ci_tools/android_app/options.rb → fastlane/plugin/sq_ci_tools/options/android_app.rb}
RENAMED
@@ -1,9 +1,12 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
module Options
|
9
|
+
class AndroidApp
|
7
10
|
def self.options
|
8
11
|
[
|
9
12
|
FastlaneCore::ConfigItem.new(
|
@@ -25,4 +28,4 @@ module SqCiTools
|
|
25
28
|
end
|
26
29
|
end
|
27
30
|
end
|
28
|
-
end
|
31
|
+
end
|
data/lib/{sq_ci_tools/code_signing/options.rb → fastlane/plugin/sq_ci_tools/options/code_signing.rb}
RENAMED
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class CodeSigning
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -40,4 +44,4 @@ module SqCiTools
|
|
40
44
|
end
|
41
45
|
end
|
42
46
|
end
|
43
|
-
end
|
47
|
+
end
|
data/lib/{sq_ci_tools/google_play/options.rb → fastlane/plugin/sq_ci_tools/options/google_play.rb}
RENAMED
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class GooglePlay
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -35,4 +39,4 @@ module SqCiTools
|
|
35
39
|
end
|
36
40
|
end
|
37
41
|
end
|
38
|
-
end
|
42
|
+
end
|
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class IosApp
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
data/lib/{sq_ci_tools/keychain/options.rb → fastlane/plugin/sq_ci_tools/options/keychain.rb}
RENAMED
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class Keychain
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -24,4 +28,4 @@ module SqCiTools
|
|
24
28
|
end
|
25
29
|
end
|
26
30
|
end
|
27
|
-
end
|
31
|
+
end
|
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class S3
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -45,4 +49,4 @@ module SqCiTools
|
|
45
49
|
end
|
46
50
|
end
|
47
51
|
end
|
48
|
-
end
|
52
|
+
end
|
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class Shared
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -18,4 +22,4 @@ module SqCiTools
|
|
18
22
|
end
|
19
23
|
end
|
20
24
|
end
|
21
|
-
end
|
25
|
+
end
|
data/lib/{sq_ci_tools/telegram/options.rb → fastlane/plugin/sq_ci_tools/options/telegram.rb}
RENAMED
@@ -1,9 +1,13 @@
|
|
1
|
+
require 'fastlane/action'
|
2
|
+
require 'fastlane_core/ui/ui'
|
1
3
|
require 'fastlane_core/configuration/config_item'
|
2
4
|
require 'credentials_manager/appfile_config'
|
3
5
|
|
4
|
-
module
|
5
|
-
|
6
|
-
|
6
|
+
module Fastlane
|
7
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
|
8
|
+
|
9
|
+
module Options
|
10
|
+
class Telegram
|
7
11
|
def self.options
|
8
12
|
[
|
9
13
|
FastlaneCore::ConfigItem.new(
|
@@ -32,4 +36,4 @@ module SqCiTools
|
|
32
36
|
end
|
33
37
|
end
|
34
38
|
end
|
35
|
-
end
|
39
|
+
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module Fastlane
|
2
2
|
module SqCiTools
|
3
|
-
# Return all .rb files inside the "actions" and "
|
3
|
+
# Return all .rb files inside the "actions", "helper" and "options" directory
|
4
4
|
def self.all_classes
|
5
|
-
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
5
|
+
Dir[File.expand_path('**/{actions,helper,options}/*.rb', File.dirname(__FILE__))]
|
6
6
|
end
|
7
7
|
end
|
8
8
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-sq_ci_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Semen Kologrivov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -158,17 +158,16 @@ files:
|
|
158
158
|
- lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_aab_to_google_play_action.rb
|
159
159
|
- lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_file_to_s3_action.rb
|
160
160
|
- lib/fastlane/plugin/sq_ci_tools/helper/sq_ci_tools_helper.rb
|
161
|
+
- lib/fastlane/plugin/sq_ci_tools/options/android_app.rb
|
162
|
+
- lib/fastlane/plugin/sq_ci_tools/options/code_signing.rb
|
163
|
+
- lib/fastlane/plugin/sq_ci_tools/options/google_play.rb
|
164
|
+
- lib/fastlane/plugin/sq_ci_tools/options/ios_app.rb
|
165
|
+
- lib/fastlane/plugin/sq_ci_tools/options/keychain.rb
|
166
|
+
- lib/fastlane/plugin/sq_ci_tools/options/s3.rb
|
167
|
+
- lib/fastlane/plugin/sq_ci_tools/options/shared.rb
|
168
|
+
- lib/fastlane/plugin/sq_ci_tools/options/telegram.rb
|
161
169
|
- lib/fastlane/plugin/sq_ci_tools/version.rb
|
162
|
-
|
163
|
-
- lib/sq_ci_tools/code_signing/options.rb
|
164
|
-
- lib/sq_ci_tools/google_play/options.rb
|
165
|
-
- lib/sq_ci_tools/ios_app/options.rb
|
166
|
-
- lib/sq_ci_tools/keychain/options.rb
|
167
|
-
- lib/sq_ci_tools/s3/options.rb
|
168
|
-
- lib/sq_ci_tools/shared/options.rb
|
169
|
-
- lib/sq_ci_tools/sq_ci_tools.rb
|
170
|
-
- lib/sq_ci_tools/telegram/options.rb
|
171
|
-
homepage:
|
170
|
+
homepage: https://github.com/sequenia/fastlane-plugin-sq_ci_tools
|
172
171
|
licenses:
|
173
172
|
- MIT
|
174
173
|
metadata:
|