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.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_build_ios_application_action.rb +6 -6
  3. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_app_version_string_action.rb +4 -4
  4. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_bundle_identifier_action.rb +2 -2
  5. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_last_version_code_from_google_play_action.rb +6 -6
  6. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_get_team_identifier_action.rb +2 -2
  7. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_prepare_keychain_action.rb +2 -2
  8. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_send_telegram_message_action.rb +3 -3
  9. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_set_version_code_action.rb +2 -2
  10. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_aab_to_google_play_action.rb +6 -6
  11. data/lib/fastlane/plugin/sq_ci_tools/actions/sq_ci_tools_upload_file_to_s3_action.rb +2 -2
  12. data/lib/{sq_ci_tools/android_app/options.rb → fastlane/plugin/sq_ci_tools/options/android_app.rb} +7 -4
  13. data/lib/{sq_ci_tools/code_signing/options.rb → fastlane/plugin/sq_ci_tools/options/code_signing.rb} +8 -4
  14. data/lib/{sq_ci_tools/google_play/options.rb → fastlane/plugin/sq_ci_tools/options/google_play.rb} +8 -4
  15. data/lib/{sq_ci_tools/ios_app/options.rb → fastlane/plugin/sq_ci_tools/options/ios_app.rb} +7 -3
  16. data/lib/{sq_ci_tools/keychain/options.rb → fastlane/plugin/sq_ci_tools/options/keychain.rb} +8 -4
  17. data/lib/{sq_ci_tools/s3/options.rb → fastlane/plugin/sq_ci_tools/options/s3.rb} +8 -4
  18. data/lib/{sq_ci_tools/shared/options.rb → fastlane/plugin/sq_ci_tools/options/shared.rb} +8 -4
  19. data/lib/{sq_ci_tools/telegram/options.rb → fastlane/plugin/sq_ci_tools/options/telegram.rb} +8 -4
  20. data/lib/fastlane/plugin/sq_ci_tools/version.rb +1 -1
  21. data/lib/fastlane/plugin/sq_ci_tools.rb +2 -2
  22. metadata +11 -12
  23. 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: 061277f92fea7b357454bd1472aa4a497aae014f373651ca3376738afd8d9dd5
4
- data.tar.gz: 19bff710fcf4dc867da8162f448568d83ff09be272bb3542f01b520cfbc88922
3
+ metadata.gz: 5bc4d4c00ae2a7ea46a255ce03b0a3d1b83226fba8dff7865bbb82627368e8b8
4
+ data.tar.gz: c6803c7957588be3e51fd898dc609018b251712cea4f90b35501ec649006127e
5
5
  SHA512:
6
- metadata.gz: 3df47be36326df6e99d7ca59fdd11bdc7e342ed2f08034e50c34f3ae6324e6debf1bbcd73472edb1b8c829ddd8356140330f233e56aa7df10c1349db63743e0b
7
- data.tar.gz: 1ef2b6cbbf61a33504d265a15ff9245edb8b7223387368b57df5781f2c624fb1f84346909b843e9e766c8c4bc18779bc149cfa7cff20b7cc95fccb9339f1c936
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 '../../../../sq_ci_tools/keychain/options'
4
- require_relative '../../../../sq_ci_tools/ios_app/options'
5
- require_relative '../../../../sq_ci_tools/code_signing/options'
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
- ::SqCiTools::CodeSigning::Options.options +
112
- ::SqCiTools::Keychain::Options.options +
113
- ::SqCiTools::IosApp::Options.options
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 '../../../../sq_ci_tools/ios_app/options'
4
- require_relative '../../../../sq_ci_tools/android_app/options'
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
- ::SqCiTools::AndroidApp::Options.options +
58
- ::SqCiTools::IosApp::Options.options
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 '../../../../sq_ci_tools/ios_app/options'
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
- ::SqCiTools::IosApp::Options.options
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 '../../../../sq_ci_tools/google_play/options'
4
- require_relative '../../../../sq_ci_tools/android_app/options'
5
- require_relative '../../../../sq_ci_tools/shared/options'
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
- ::SqCiTools::GooglePlay::Options.options +
38
- ::SqCiTools::AndroidApp::Options.options +
39
- ::SqCiTools::Shared::Options.options
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 '../../../../sq_ci_tools/ios_app/options'
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
- ::SqCiTools::IosApp::Options.options
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 '../../../../sq_ci_tools/keychain/options'
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
- ::SqCiTools::Keychain::Options.options
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 '../../../../sq_ci_tools/telegram/options'
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
- ::SqCiTools::Telegram::Options.options
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 '../../../../sq_ci_tools/android_app/options'
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
- ::SqCiTools::AndroidApp::Options.options
32
+ Options::AndroidApp.options
33
33
  end
34
34
 
35
35
  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 '../../../../sq_ci_tools/google_play/options'
4
- require_relative '../../../../sq_ci_tools/android_app/options'
5
- require_relative '../../../../sq_ci_tools/shared/options'
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
- ::SqCiTools::GooglePlay::Options.options +
48
- ::SqCiTools::AndroidApp::Options.options +
49
- ::SqCiTools::Shared::Options.options
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 '../../../../sq_ci_tools/s3/options'
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
- ::SqCiTools::S3::Options.options
64
+ Options::S3.options
65
65
  end
66
66
 
67
67
  def self.return_type
@@ -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 SqCiTools
5
- module AndroidApp
6
- class Options
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
@@ -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 SqCiTools
5
- module CodeSigning
6
- class Options
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
@@ -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 SqCiTools
5
- module GooglePlay
6
- class Options
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 SqCiTools
5
- module IosApp
6
- class Options
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(
@@ -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 SqCiTools
5
- module Keychain
6
- class Options
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 SqCiTools
5
- module S3
6
- class Options
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 SqCiTools
5
- module Shared
6
- class Options
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
@@ -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 SqCiTools
5
- module Telegram
6
- class Options
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,5 +1,5 @@
1
1
  module Fastlane
2
2
  module SqCiTools
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1".freeze
4
4
  end
5
5
  end
@@ -1,8 +1,8 @@
1
1
  module Fastlane
2
2
  module SqCiTools
3
- # Return all .rb files inside the "actions" and "helper" directory
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.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-20 00:00:00.000000000 Z
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
- - lib/sq_ci_tools/android_app/options.rb
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:
@@ -1,2 +0,0 @@
1
- module SqCiTools
2
- end