fastlane-plugin-xcode_build_configuration 1.0.0
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +83 -0
- data/lib/fastlane/plugin/xcode_build_configuration/actions/get_build_number_by_scheme_and_build_configuration.rb +58 -0
- data/lib/fastlane/plugin/xcode_build_configuration/actions/get_marketing_version_by_scheme_and_build_configuration.rb +58 -0
- data/lib/fastlane/plugin/xcode_build_configuration/actions/set_app_version_by_scheme_and_build_configuration.rb +64 -0
- data/lib/fastlane/plugin/xcode_build_configuration/actions/set_build_number_by_scheme_and_build_configuration.rb +60 -0
- data/lib/fastlane/plugin/xcode_build_configuration/actions/set_marketing_version_by_scheme_and_build_configuration.rb +60 -0
- data/lib/fastlane/plugin/xcode_build_configuration/helper/xcode_build_configuration_helper.rb +16 -0
- data/lib/fastlane/plugin/xcode_build_configuration/version.rb +5 -0
- data/lib/fastlane/plugin/xcode_build_configuration.rb +16 -0
- metadata +192 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3a55e80ad410c4060625dd129c8e2f5a85aeea0254706c41a2be1a6b87b44fdb
|
4
|
+
data.tar.gz: f0fb0f51eaba070dc376f00c1e168f4578637ad2f761d1a1ade2b6ea10a5668a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7beffa90c73e8770f6b683b2f5c953e15fe672622a510ba8f6c4b279db09aac23433505b356574994e8f3729d3b6ed95c0ce43e90b5abae9946b14b3e45f63f9
|
7
|
+
data.tar.gz: e2013d9921a56530d13540d61416c3a6a40cccf824a21af24192bcf41609018b69aabc6d3fdcc06e800d40f799e00ae783c0697b4b58aa68f33ea2e487aa878d
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2022 dileepasisila <dileepa@huubap.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,83 @@
|
|
1
|
+
# xcode_build_configuration plugin
|
2
|
+
|
3
|
+
[](https://rubygems.org/gems/fastlane-plugin-xcode_build_configuration)
|
4
|
+
|
5
|
+
## Getting Started
|
6
|
+
|
7
|
+
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-xcode_build_configuration`, add it to your project by running:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
fastlane add_plugin xcode_build_configuration
|
11
|
+
```
|
12
|
+
|
13
|
+
## About xcode_build_configuration
|
14
|
+
|
15
|
+
Getting build settings information for relevant build configuration and schemas.
|
16
|
+
Set and Get Version information without using agvtool.
|
17
|
+
For applying this actions, schemes should be shared state.
|
18
|
+
|
19
|
+
## Actions
|
20
|
+
|
21
|
+
##### get_build_number_by_scheme_and_build_configuration
|
22
|
+
Get the build number from a xcodeproj for a particular scheme and build configuration.
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
build_number = get_build_number_by_scheme_and_build_configuration(
|
26
|
+
scheme: 'Scheme Name',
|
27
|
+
build_configuration_name: 'Build Configuration name')
|
28
|
+
```
|
29
|
+
|
30
|
+
##### get_marketing_version_by_scheme_and_build_configuration
|
31
|
+
Get the marketing version from a xcodeproj for a particular scheme and build configuration.
|
32
|
+
|
33
|
+
```ruby
|
34
|
+
marketing_version = get_marketing_version_by_scheme_and_build_configuration(
|
35
|
+
scheme: 'Scheme Name',
|
36
|
+
build_configuration_name: 'Build Configuration name')
|
37
|
+
```
|
38
|
+
|
39
|
+
##### set_build_number_by_scheme_and_build_configuration
|
40
|
+
Set the build number to the xcodeproj for a particular scheme and build configuration.
|
41
|
+
|
42
|
+
```ruby
|
43
|
+
marketing_version = set_build_number_by_scheme_and_build_configuration(
|
44
|
+
build_number: 'Build Number',
|
45
|
+
scheme: 'Scheme Name',
|
46
|
+
build_configuration_name: 'Build Configuration name')
|
47
|
+
```
|
48
|
+
##### set_marketing_version_by_scheme_and_build_configuration
|
49
|
+
Set the marketing version to the xcodeproj for a particular scheme and build configuration.
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
marketing_version = set_marketing_version_by_scheme_and_build_configuration(
|
53
|
+
marketing_version: 'Marketing Version'
|
54
|
+
scheme: 'Scheme Name',
|
55
|
+
build_configuration_name: 'Build Configuration name')
|
56
|
+
```
|
57
|
+
|
58
|
+
##### set_app_version_by_scheme_and_build_configuration
|
59
|
+
Set the marketing version to the xcodeproj for a particular scheme and build configuration.
|
60
|
+
|
61
|
+
```ruby
|
62
|
+
marketing_version = set_app_version_by_scheme_and_build_configuration(
|
63
|
+
build_number: 'Build Number',
|
64
|
+
marketing_version: 'Marketing Version',
|
65
|
+
scheme: 'Scheme Name',
|
66
|
+
build_configuration_name: 'Build Configuration name')
|
67
|
+
```
|
68
|
+
|
69
|
+
## Issues and Feedback
|
70
|
+
|
71
|
+
For any other issues and feedback about this plugin, please submit it to this repository.
|
72
|
+
|
73
|
+
## Troubleshooting
|
74
|
+
|
75
|
+
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
76
|
+
|
77
|
+
## Using _fastlane_ Plugins
|
78
|
+
|
79
|
+
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
80
|
+
|
81
|
+
## About _fastlane_
|
82
|
+
|
83
|
+
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class GetBuildNumberBySchemeAndBuildConfigurationAction < Action
|
4
|
+
require 'xcodeproj'
|
5
|
+
require 'pathname'
|
6
|
+
|
7
|
+
def self.run(params)
|
8
|
+
xcodeProject = Dir["*.xcodeproj"][0]
|
9
|
+
config = { project: xcodeProject, scheme: params[:scheme], configuration: params[:build_configuration_name] }
|
10
|
+
project = FastlaneCore::Project.new(config)
|
11
|
+
project.select_scheme
|
12
|
+
build_number = project.build_settings(key: 'CURRENT_PROJECT_VERSION')
|
13
|
+
UI.user_error! "Cannot resolve $(CURRENT_PROJECT_VERSION) in for the scheme #{config.scheme} with the name #{params.configuration}" if build_number.nil? || build_number.empty?
|
14
|
+
return build_number
|
15
|
+
end
|
16
|
+
|
17
|
+
#####################################################
|
18
|
+
# @!group Documentation
|
19
|
+
#####################################################
|
20
|
+
|
21
|
+
def self.description
|
22
|
+
"Get the build number using scheme and build configuration"
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.details
|
26
|
+
'Gets the $(CURRENT_PROJECT_VERSION) build setting using scheme and build configuration'
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.available_options
|
30
|
+
[ FastlaneCore::ConfigItem.new(key: :scheme,
|
31
|
+
optional: false,
|
32
|
+
description: "Specify a specific scheme if you have multiple per project"),
|
33
|
+
FastlaneCore::ConfigItem.new(key: :build_configuration_name,
|
34
|
+
optional: false,
|
35
|
+
description: "Specify a specific build configuration if you have different build settings for each configuration")
|
36
|
+
]
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.output
|
40
|
+
[
|
41
|
+
['BUILD_NUMBER', 'The build number']
|
42
|
+
]
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.authors
|
46
|
+
["Dileepa Sisila Chandrasekara"]
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.return_type
|
50
|
+
:string
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.is_supported?(platform)
|
54
|
+
%i[ios mac].include? platform
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class GetMarketingVersionBySchemeAndBuildConfigurationAction < Action
|
4
|
+
require 'xcodeproj'
|
5
|
+
require 'pathname'
|
6
|
+
|
7
|
+
def self.run(params)
|
8
|
+
xcodeProject = Dir["*.xcodeproj"][0]
|
9
|
+
config = { project: xcodeProject, scheme: params[:scheme], configuration: params[:build_configuration_name] }
|
10
|
+
project = FastlaneCore::Project.new(config)
|
11
|
+
project.select_scheme
|
12
|
+
marketing_version = project.build_settings(key: 'MARKETING_VERSION')
|
13
|
+
UI.user_error! "Cannot resolve $(MARKETING_VERSION) in for the scheme #{config.scheme} with the name #{params.configuration}" if marketing_version.nil? || marketing_version.empty?
|
14
|
+
return marketing_version
|
15
|
+
end
|
16
|
+
|
17
|
+
#####################################################
|
18
|
+
# @!group Documentation
|
19
|
+
#####################################################
|
20
|
+
|
21
|
+
def self.description
|
22
|
+
"Get the marketing version using scheme and build configuration"
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.details
|
26
|
+
'Gets the $(MARKETING_VERSION) build setting using scheme and build configuration'
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.available_options
|
30
|
+
[ FastlaneCore::ConfigItem.new(key: :scheme,
|
31
|
+
optional: false,
|
32
|
+
description: "Specify a specific scheme if you have multiple per project"),
|
33
|
+
FastlaneCore::ConfigItem.new(key: :build_configuration_name,
|
34
|
+
optional: false,
|
35
|
+
description: "Specify a specific build configuration if you have different build settings for each configuration")
|
36
|
+
]
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.output
|
40
|
+
[
|
41
|
+
['MARKETING_VERSION', 'The Marketign Version']
|
42
|
+
]
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.authors
|
46
|
+
["Dileepa Sisila Chandrasekara"]
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.return_type
|
50
|
+
:string
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.is_supported?(platform)
|
54
|
+
%i[ios mac].include? platform
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class SetAppVersionBySchemeAndBuildConfigurationAction < Action
|
4
|
+
require 'xcodeproj'
|
5
|
+
require 'pathname'
|
6
|
+
|
7
|
+
def self.run(params)
|
8
|
+
xcodeProject = Dir["*.xcodeproj"][0]
|
9
|
+
project = Xcodeproj::Project.open(xcodeProject)
|
10
|
+
configs = project.objects.select { |obj| select_build_configuration_predicate(params[:build_configuration_name], obj) }
|
11
|
+
configs.each do |config|
|
12
|
+
config.build_settings["CURRENT_PROJECT_VERSION"] = params[:build_number]
|
13
|
+
config.build_settings["MARKETING_VERSION"] = params[:marketing_version]
|
14
|
+
end
|
15
|
+
project.save
|
16
|
+
UI.success("app version has been updated to #{ params[:marketing_version]}(#{ params[:build_number]})")
|
17
|
+
end
|
18
|
+
|
19
|
+
private_class_method
|
20
|
+
def self.select_build_configuration_predicate(name, configuration)
|
21
|
+
is_build_valid_configuration = configuration.isa == "XCBuildConfiguration" && !configuration.build_settings["PRODUCT_BUNDLE_IDENTIFIER"].nil?
|
22
|
+
is_build_valid_configuration &&= configuration.name == name unless name.nil?
|
23
|
+
return is_build_valid_configuration
|
24
|
+
end
|
25
|
+
|
26
|
+
#####################################################
|
27
|
+
# @!group Documentation
|
28
|
+
#####################################################
|
29
|
+
|
30
|
+
def self.description
|
31
|
+
"Set the app version with using marketing version and build number input for relevant scheme and build configuration"
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.details
|
35
|
+
'Set the app version with using marketing version and build number input for relevant scheme and build configuration'
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.available_options
|
39
|
+
[
|
40
|
+
FastlaneCore::ConfigItem.new(key: :build_number,
|
41
|
+
description: "Change to a specific build number",
|
42
|
+
optional: false),
|
43
|
+
FastlaneCore::ConfigItem.new(key: :marketing_version,
|
44
|
+
description: "Change to a specific marketing version",
|
45
|
+
optional: false),
|
46
|
+
FastlaneCore::ConfigItem.new(key: :scheme,
|
47
|
+
optional: false,
|
48
|
+
description: "Specify a specific scheme if you have multiple per project"),
|
49
|
+
FastlaneCore::ConfigItem.new(key: :build_configuration_name,
|
50
|
+
optional: false,
|
51
|
+
description: "Specify a specific build configuration if you have different build settings for each configuration")
|
52
|
+
]
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.authors
|
56
|
+
["Dileepa Sisila Chandrasekara"]
|
57
|
+
end
|
58
|
+
|
59
|
+
def self.is_supported?(platform)
|
60
|
+
%i[ios mac].include? platform
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class SetBuildNumberBySchemeAndBuildConfigurationAction < Action
|
4
|
+
require 'xcodeproj'
|
5
|
+
require 'pathname'
|
6
|
+
|
7
|
+
def self.run(params)
|
8
|
+
xcodeProject = Dir["*.xcodeproj"][0]
|
9
|
+
project = Xcodeproj::Project.open(xcodeProject)
|
10
|
+
configs = project.objects.select { |obj| select_build_configuration_predicate(params[:build_configuration_name], obj) }
|
11
|
+
configs.each do |config|
|
12
|
+
config.build_settings["CURRENT_PROJECT_VERSION"] = params[:build_number]
|
13
|
+
end
|
14
|
+
project.save
|
15
|
+
UI.success("build number has been updated to #{ params[:build_number]}")
|
16
|
+
end
|
17
|
+
|
18
|
+
private_class_method
|
19
|
+
def self.select_build_configuration_predicate(name, configuration)
|
20
|
+
is_build_valid_configuration = configuration.isa == "XCBuildConfiguration" && !configuration.build_settings["PRODUCT_BUNDLE_IDENTIFIER"].nil?
|
21
|
+
is_build_valid_configuration &&= configuration.name == name unless name.nil?
|
22
|
+
return is_build_valid_configuration
|
23
|
+
end
|
24
|
+
|
25
|
+
#####################################################
|
26
|
+
# @!group Documentation
|
27
|
+
#####################################################
|
28
|
+
|
29
|
+
def self.description
|
30
|
+
"Set the build number using scheme and build configuration"
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.details
|
34
|
+
'Set the $(CURRENT_PROJECT_VERSION) build setting using scheme and build configuration'
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.available_options
|
38
|
+
[
|
39
|
+
FastlaneCore::ConfigItem.new(key: :build_number,
|
40
|
+
description: "Change to a specific build number",
|
41
|
+
optional: false),
|
42
|
+
FastlaneCore::ConfigItem.new(key: :scheme,
|
43
|
+
optional: false,
|
44
|
+
description: "Specify a specific scheme if you have multiple per project"),
|
45
|
+
FastlaneCore::ConfigItem.new(key: :build_configuration_name,
|
46
|
+
optional: false,
|
47
|
+
description: "Specify a specific build configuration if you have different build settings for each configuration")
|
48
|
+
]
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.authors
|
52
|
+
["Dileepa Sisila Chandrasekara"]
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.is_supported?(platform)
|
56
|
+
%i[ios mac].include? platform
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class SetMarketingVersionBySchemeAndBuildConfigurationAction < Action
|
4
|
+
require 'xcodeproj'
|
5
|
+
require 'pathname'
|
6
|
+
|
7
|
+
def self.run(params)
|
8
|
+
xcodeProject = Dir["*.xcodeproj"][0]
|
9
|
+
project = Xcodeproj::Project.open(xcodeProject)
|
10
|
+
configs = project.objects.select { |obj| select_build_configuration_predicate(params[:build_configuration_name], obj) }
|
11
|
+
configs.each do |config|
|
12
|
+
config.build_settings["MARKETING_VERSION"] = params[:marketing_version]
|
13
|
+
end
|
14
|
+
project.save
|
15
|
+
UI.success("marketing version has been updated to #{ params[:marketing_version]}")
|
16
|
+
end
|
17
|
+
|
18
|
+
private_class_method
|
19
|
+
def self.select_build_configuration_predicate(name, configuration)
|
20
|
+
is_build_valid_configuration = configuration.isa == "XCBuildConfiguration" && !configuration.build_settings["PRODUCT_BUNDLE_IDENTIFIER"].nil?
|
21
|
+
is_build_valid_configuration &&= configuration.name == name unless name.nil?
|
22
|
+
return is_build_valid_configuration
|
23
|
+
end
|
24
|
+
|
25
|
+
#####################################################
|
26
|
+
# @!group Documentation
|
27
|
+
#####################################################
|
28
|
+
|
29
|
+
def self.description
|
30
|
+
"Set the marketing version using scheme and build configuration"
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.details
|
34
|
+
'Set the $(MARKETING_VERSION) build setting using scheme and build configuration'
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.available_options
|
38
|
+
[
|
39
|
+
FastlaneCore::ConfigItem.new(key: :marketing_version,
|
40
|
+
description: "Change to a specific marketing version",
|
41
|
+
optional: false),
|
42
|
+
FastlaneCore::ConfigItem.new(key: :scheme,
|
43
|
+
optional: false,
|
44
|
+
description: "Specify a specific scheme if you have multiple per project"),
|
45
|
+
FastlaneCore::ConfigItem.new(key: :build_configuration_name,
|
46
|
+
optional: false,
|
47
|
+
description: "Specify a specific build configuration if you have different build settings for each configuration")
|
48
|
+
]
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.authors
|
52
|
+
["Dileepa Sisila Chandrasekara"]
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.is_supported?(platform)
|
56
|
+
%i[ios mac].include? platform
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane_core/ui/ui'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
|
5
|
+
|
6
|
+
module Helper
|
7
|
+
class XcodeBuildConfigurationHelper
|
8
|
+
# class methods that you define here become available in your action
|
9
|
+
# as `Helper::XcodeBuildConfigurationHelper.your_method`
|
10
|
+
#
|
11
|
+
def self.show_message
|
12
|
+
UI.message("Hello from the xcode_build_configuration plugin helper!")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fastlane/plugin/xcode_build_configuration/version'
|
2
|
+
|
3
|
+
module Fastlane
|
4
|
+
module XcodeBuildConfiguration
|
5
|
+
# Return all .rb files inside the "actions" and "helper" directory
|
6
|
+
def self.all_classes
|
7
|
+
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
# By default we want to import all available actions and helpers
|
13
|
+
# A plugin can contain any number of actions and plugins
|
14
|
+
Fastlane::XcodeBuildConfiguration.all_classes.each do |current|
|
15
|
+
require current
|
16
|
+
end
|
metadata
ADDED
@@ -0,0 +1,192 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fastlane-plugin-xcode_build_configuration
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- dileepasisila
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-03-24 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: fastlane
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.193.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.193.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec_junit_formatter
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.12.1
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.12.1
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubocop-performance
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rubocop-require_tools
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: simplecov
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
description:
|
154
|
+
email: dileepa@huubap.com
|
155
|
+
executables: []
|
156
|
+
extensions: []
|
157
|
+
extra_rdoc_files: []
|
158
|
+
files:
|
159
|
+
- LICENSE
|
160
|
+
- README.md
|
161
|
+
- lib/fastlane/plugin/xcode_build_configuration.rb
|
162
|
+
- lib/fastlane/plugin/xcode_build_configuration/actions/get_build_number_by_scheme_and_build_configuration.rb
|
163
|
+
- lib/fastlane/plugin/xcode_build_configuration/actions/get_marketing_version_by_scheme_and_build_configuration.rb
|
164
|
+
- lib/fastlane/plugin/xcode_build_configuration/actions/set_app_version_by_scheme_and_build_configuration.rb
|
165
|
+
- lib/fastlane/plugin/xcode_build_configuration/actions/set_build_number_by_scheme_and_build_configuration.rb
|
166
|
+
- lib/fastlane/plugin/xcode_build_configuration/actions/set_marketing_version_by_scheme_and_build_configuration.rb
|
167
|
+
- lib/fastlane/plugin/xcode_build_configuration/helper/xcode_build_configuration_helper.rb
|
168
|
+
- lib/fastlane/plugin/xcode_build_configuration/version.rb
|
169
|
+
homepage: https://github.com/dileepasisila/fastlane-plugin-xcode_build_configuration
|
170
|
+
licenses:
|
171
|
+
- MIT
|
172
|
+
metadata: {}
|
173
|
+
post_install_message:
|
174
|
+
rdoc_options: []
|
175
|
+
require_paths:
|
176
|
+
- lib
|
177
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - ">="
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '2.5'
|
182
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
183
|
+
requirements:
|
184
|
+
- - ">="
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0'
|
187
|
+
requirements: []
|
188
|
+
rubygems_version: 3.0.3.1
|
189
|
+
signing_key:
|
190
|
+
specification_version: 4
|
191
|
+
summary: plugin for doing xcode build configuration specific things
|
192
|
+
test_files: []
|