fastlane-plugin-xcodebuild_analyze 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4dfaf4c71556556813b654627fa6b7c17dff8fca09fdf67064d3fb14b44d8476
4
+ data.tar.gz: 3fd607d7c8e46db7e8003b3d9b7ec63daef39e47789918bfdfa9ff202342e7b8
5
+ SHA512:
6
+ metadata.gz: 4c51b1ae4dc8b2cbf2b844a308e5932f755938dfeba022680099191b2f61e6f4b893189a84d030a58bf1c1b3dbb645aa7c0c7e312b3324d690b796c8963bd44c
7
+ data.tar.gz: 2aa6d3a3914c17b0c2715c7dd3b0283cc2dc09d1c93c7969ad12547793e134b309d7a158d831994bf47e8ed10c944321d1c5d195d91069c231edf0c6ea7cac45
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Meniga <mobile.dev@meniga.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,50 @@
1
+ # xcodebuild_analyze plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-xcodebuild_analyze)
4
+ [![Build Status](https://travis-ci.org/meniga/fastlane-plugin-xcodebuild_analyze.svg?branch=master)](https://travis-ci.org/meniga/fastlane-plugin-xcodebuild_analyze)
5
+ [![codecov](https://codecov.io/gh/meniga/fastlane-plugin-xcodebuild_analyze/branch/master/graph/badge.svg)](https://codecov.io/gh/meniga/fastlane-plugin-xcodebuild_analyze)
6
+
7
+ ## Getting Started
8
+
9
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-xcodebuild_analyze`, add it to your project by running:
10
+
11
+ ```bash
12
+ fastlane add_plugin xcodebuild_analyze
13
+ ```
14
+
15
+ ## About xcodebuild_analyze
16
+
17
+ Run code analyzer using xcodebuild
18
+
19
+ ## Example
20
+
21
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and check available lanes in `Fastfile`.
22
+
23
+ ## Run tests for this plugin
24
+
25
+ To run both the tests, and code style validation, run
26
+
27
+ ```
28
+ rake
29
+ ```
30
+
31
+ To automatically fix many of the styling issues, use
32
+ ```
33
+ rubocop -a
34
+ ```
35
+
36
+ ## Issues and Feedback
37
+
38
+ For any other issues and feedback about this plugin, please submit it to this repository.
39
+
40
+ ## Troubleshooting
41
+
42
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
43
+
44
+ ## Using _fastlane_ Plugins
45
+
46
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
47
+
48
+ ## About _fastlane_
49
+
50
+ _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,16 @@
1
+ require 'fastlane/plugin/xcodebuild_analyze/version'
2
+
3
+ module Fastlane
4
+ module XcodebuildAnalyze
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::XcodebuildAnalyze.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,53 @@
1
+ require 'fastlane'
2
+ require_relative '../helper/ensure_no_results_from_xcodebuild_analyze_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class EnsureNoResultsFromXcodebuildAnalyzeAction < Action
7
+ def self.run(params)
8
+ Helper::EnsureNoResultsFromXcodebuildAnalyzeHelper.ensure_no_results(
9
+ params[:path],
10
+ params[:prune]
11
+ )
12
+ end
13
+
14
+ def self.category
15
+ :building
16
+ end
17
+
18
+ def self.description
19
+ "Check if the are any vulnerabilities under provided analyzer output path"
20
+ end
21
+
22
+ def self.authors
23
+ ["Marcin Stepnowski"]
24
+ end
25
+
26
+ def self.example_code
27
+ [
28
+ "ensure_no_results(path: 'Meniga/analyzer_output', prune: true)"
29
+ ]
30
+ end
31
+
32
+ def self.available_options
33
+ [
34
+ FastlaneCore::ConfigItem.new(key: :path,
35
+ env_name: "ENSURE_NO_RESULTS_FROM_XCODEBUILD_ANALYZE_PATH",
36
+ description: "Path to analyzer output directory",
37
+ optional: false,
38
+ type: String),
39
+ FastlaneCore::ConfigItem.new(key: :prune,
40
+ env_name: "ENSURE_NO_RESULTS_FROM_XCODEBUILD_ANALYZE_PRUNE",
41
+ description: "Remove directory afterwards if true",
42
+ optional: false,
43
+ type: Boolean,
44
+ default_value: false)
45
+ ]
46
+ end
47
+
48
+ def self.is_supported?(platform)
49
+ [:ios, :mac].include?(platform)
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,87 @@
1
+ require 'fastlane'
2
+ require_relative '../helper/xcodebuild_analyze_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class XcodebuildAnalyzeAction < Action
7
+ def self.run(params)
8
+ configuration = Helper::XcodebuildAnalyzeHelper.parse_configuration(params)
9
+ Helper::XcodebuildAnalyzeHelper.run_analyzer(configuration, other_action)
10
+ end
11
+
12
+ def self.category
13
+ :building
14
+ end
15
+
16
+ def self.description
17
+ "Run code analyzer using xcodebuild"
18
+ end
19
+
20
+ def self.authors
21
+ ["Marcin Stepnowski"]
22
+ end
23
+
24
+ def self.example_code
25
+ [
26
+ "
27
+ xcodebuild_analyze(project: 'Meniga.xcodeproj',
28
+ scheme: 'Release',
29
+ sdk: 'iphonesimulator'
30
+ output_dir: 'tmp',
31
+ output: 'html',
32
+ static_analyzer: true)
33
+ "
34
+ ]
35
+ end
36
+
37
+ def self.available_options
38
+ [
39
+ FastlaneCore::ConfigItem.new(key: :workspace,
40
+ env_name: "XCODEBUILD_ANALYZE_WORKSPACE",
41
+ description: "WORKSPACE Workspace (.xcworkspace) file to use to analyze app (automatically detected in current directory)",
42
+ optional: true,
43
+ type: String),
44
+ FastlaneCore::ConfigItem.new(key: :project,
45
+ env_name: "XCODEBUILD_ANALYZE_PROJECT",
46
+ description: "Project (.xcodeproj) file to use to analyze app (overridden by --workspace option, if passed)",
47
+ optional: true,
48
+ type: String),
49
+ FastlaneCore::ConfigItem.new(key: :configuration,
50
+ env_name: "XCODEBUILD_ANALYZE_CONFIGURATION",
51
+ description: "Configuration used to analyze",
52
+ optional: true,
53
+ type: String),
54
+ FastlaneCore::ConfigItem.new(key: :scheme,
55
+ env_name: "XCODEBUILD_ANALYZE_SCHEME",
56
+ description: "Scheme used to analyze app",
57
+ optional: false,
58
+ type: String),
59
+ FastlaneCore::ConfigItem.new(key: :sdk,
60
+ env_name: "XCODEBUILD_ANALYZE_SDK",
61
+ description: "Use SDK as the name or path of the base SDK when building the project",
62
+ optional: true,
63
+ type: String),
64
+ FastlaneCore::ConfigItem.new(key: :static_analyzer,
65
+ env_name: "XCODEBUILD_ANALYZE_STATIC_ANALYZER",
66
+ description: "Run clang static analyzer if true",
67
+ optional: true,
68
+ type: Boolean),
69
+ FastlaneCore::ConfigItem.new(key: :output,
70
+ env_name: 'XCODEBUILD_ANALYZE_OUTPUT',
71
+ description: 'List of file output formats separated by -',
72
+ optional: true,
73
+ type: String),
74
+ FastlaneCore::ConfigItem.new(key: :output_dir,
75
+ env_name: 'XCODEBUILD_ANALYZE_OUTPUT_DIR',
76
+ description: 'Path to output dir',
77
+ optional: true,
78
+ type: String)
79
+ ]
80
+ end
81
+
82
+ def self.is_supported?(platform)
83
+ [:ios, :mac].include?(platform)
84
+ end
85
+ end
86
+ end
87
+ end
@@ -0,0 +1,97 @@
1
+ require 'fastlane'
2
+ require_relative '../helper/xcodebuild_analyze_helper'
3
+ require_relative '../helper/ensure_no_results_from_xcodebuild_analyze_helper'
4
+
5
+ module Fastlane
6
+ module Actions
7
+ class XcodebuildAnalyzeAndEnsureNoResultsAction < Action
8
+ def self.run(params)
9
+ configuration = Helper::XcodebuildAnalyzeHelper.parse_configuration(params)
10
+ configuration.output = "html"
11
+ Helper::XcodebuildAnalyzeHelper.run_analyzer(configuration, other_action)
12
+ input_path = configuration.workspace ? configuration.workspace : configuration.project
13
+ path = "#{File.dirname(input_path)}/#{configuration.output_dir}"
14
+ Helper::EnsureNoResultsFromXcodebuildAnalyzeHelper.ensure_no_results(
15
+ path,
16
+ params[:prune_output]
17
+ )
18
+ end
19
+
20
+ def self.category
21
+ :building
22
+ end
23
+
24
+ def self.description
25
+ "Run code analyzer using xcodebuild and fail if any vulnerability is found"
26
+ end
27
+
28
+ def self.authors
29
+ ["Marcin Stepnowski"]
30
+ end
31
+
32
+ def self.example_code
33
+ [
34
+ "
35
+ xcodebuild_analyze_and_ensure_no_results(
36
+ project: 'Meniga.xcodeproj',
37
+ scheme: 'Release',
38
+ sdk: 'iphonesimulator'
39
+ output_dir: 'tmp',
40
+ static_analyzer: true,
41
+ prune_output: true)
42
+ "
43
+ ]
44
+ end
45
+
46
+ def self.available_options
47
+ [
48
+ FastlaneCore::ConfigItem.new(key: :workspace,
49
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_WORKSPACE",
50
+ description: "WORKSPACE Workspace (.xcworkspace) file to use to analyze app (automatically detected in current directory)",
51
+ optional: true,
52
+ type: String),
53
+ FastlaneCore::ConfigItem.new(key: :project,
54
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_PROJECT",
55
+ description: "Project (.xcodeproj) file to use to analyze app (overridden by --workspace option, if passed)",
56
+ optional: true,
57
+ type: String),
58
+ FastlaneCore::ConfigItem.new(key: :configuration,
59
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_CONFIGURATION",
60
+ description: "Configuration used to analyze",
61
+ optional: true,
62
+ type: String),
63
+ FastlaneCore::ConfigItem.new(key: :scheme,
64
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_SCHEME",
65
+ description: "Scheme used to analyze app",
66
+ optional: false,
67
+ type: String),
68
+ FastlaneCore::ConfigItem.new(key: :sdk,
69
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_SDK",
70
+ description: "Use SDK as the name or path of the base SDK when building the project",
71
+ optional: true,
72
+ type: String),
73
+ FastlaneCore::ConfigItem.new(key: :static_analyzer,
74
+ env_name: "XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_STATIC_ANALYZER",
75
+ description: "Run clang static analyzer if true",
76
+ optional: true,
77
+ type: Boolean),
78
+ FastlaneCore::ConfigItem.new(key: :prune_output,
79
+ env_name: 'XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_PRUNE_OUTPUT',
80
+ description: 'If true remove output dir after analyze',
81
+ optional: true,
82
+ type: Boolean),
83
+ FastlaneCore::ConfigItem.new(key: :output_dir,
84
+ env_name: 'XCODEBUILD_ANALYZE_AND_ENSURE_NO_RESULTS_OUTPUT_DIR',
85
+ description: 'Path to output dir',
86
+ default_value: 'analyze_results',
87
+ optional: true,
88
+ type: String)
89
+ ]
90
+ end
91
+
92
+ def self.is_supported?(platform)
93
+ [:ios, :mac].include?(platform)
94
+ end
95
+ end
96
+ end
97
+ end
@@ -0,0 +1,19 @@
1
+ require 'fastlane'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
+
6
+ module Helper
7
+ class EnsureNoResultsFromXcodebuildAnalyzeHelper
8
+ def self.ensure_no_results(path, prune)
9
+ results = Dir["#{path}/**/**.html"]
10
+ FileUtils.rm_rf(path) if prune
11
+ if results.empty?
12
+ UI.success("Project is free of analyzer warnings, all good! 💪")
13
+ else
14
+ UI.user_error!("Analyzer found vulnerabilities in #{results.count} file(s)!")
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,56 @@
1
+ require 'fastlane'
2
+
3
+ class XcodebuildAnalyzeConfiguration
4
+ attr_accessor :workspace
5
+ attr_accessor :project
6
+ attr_accessor :scheme
7
+ attr_accessor :sdk
8
+ attr_accessor :output
9
+ attr_accessor :output_dir
10
+ attr_accessor :static_analyzer
11
+
12
+ def initialize(dictionary)
13
+ @workspace = dictionary[:workspace]
14
+ @project = dictionary[:project]
15
+ @scheme = dictionary[:scheme]
16
+ @sdk = dictionary[:sdk]
17
+ @output = dictionary[:output]
18
+ @output_dir = dictionary[:output_dir]
19
+ @static_analyzer = dictionary[:static_analyzer]
20
+ end
21
+ end
22
+
23
+ module Fastlane
24
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
25
+
26
+ module Helper
27
+ class XcodebuildAnalyzeHelper
28
+ def self.parse_configuration(params)
29
+ XcodebuildAnalyzeConfiguration.new(params.values)
30
+ end
31
+
32
+ def self.run_analyzer(configuration, other_action)
33
+ workspace_path = "../#{configuration.workspace}" unless configuration.workspace.nil?
34
+ project_path = "../#{configuration.project}" unless configuration.project.nil?
35
+
36
+ xcargs = []
37
+ output = configuration.output
38
+ output_dir = configuration.output_dir
39
+ static_analyzer = configuration.static_analyzer
40
+ xcargs << "CLANG_ANALYZER_OTHER_FLAGS=" unless output.nil? && output_dir.nil? && static_analyzer.nil?
41
+ xcargs << "CLANG_ANALYZER_OUTPUT=#{output}" unless output.nil?
42
+ xcargs << "CLANG_ANALYZER_OUTPUT_DIR=#{output_dir}" unless output_dir.nil?
43
+ xcargs << "RUN_CLANG_STATIC_ANALYZER=#{static_analyzer ? 'YES' : 'NO'}" unless static_analyzer.nil?
44
+
45
+ other_action.xcodebuild(
46
+ workspace: workspace_path,
47
+ project: project_path,
48
+ scheme: configuration.scheme,
49
+ sdk: configuration.sdk,
50
+ analyze: true,
51
+ xcargs: xcargs.join(' ')
52
+ )
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module XcodebuildAnalyze
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,191 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-xcodebuild_analyze
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Meniga
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-04-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
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: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
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: rspec_junit_formatter
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: rake
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: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.49.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.49.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-require_tools
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
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: fastlane
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 2.143.0
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 2.143.0
139
+ - !ruby/object:Gem::Dependency
140
+ name: codecov
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: mobile.dev@meniga.com
155
+ executables: []
156
+ extensions: []
157
+ extra_rdoc_files: []
158
+ files:
159
+ - LICENSE
160
+ - README.md
161
+ - lib/fastlane/plugin/xcodebuild_analyze.rb
162
+ - lib/fastlane/plugin/xcodebuild_analyze/actions/ensure_no_results_from_xcodebuild_analyze_action.rb
163
+ - lib/fastlane/plugin/xcodebuild_analyze/actions/xcodebuild_analyze_action.rb
164
+ - lib/fastlane/plugin/xcodebuild_analyze/actions/xcodebuild_analyze_and_ensure_no_results_action.rb
165
+ - lib/fastlane/plugin/xcodebuild_analyze/helper/ensure_no_results_from_xcodebuild_analyze_helper.rb
166
+ - lib/fastlane/plugin/xcodebuild_analyze/helper/xcodebuild_analyze_helper.rb
167
+ - lib/fastlane/plugin/xcodebuild_analyze/version.rb
168
+ homepage: https://github.com/meniga/fastlane-plugin-xcodebuild_analyze
169
+ licenses:
170
+ - MIT
171
+ metadata: {}
172
+ post_install_message:
173
+ rdoc_options: []
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: '0'
186
+ requirements: []
187
+ rubygems_version: 3.0.6
188
+ signing_key:
189
+ specification_version: 4
190
+ summary: Run code analyzer using xcodebuild
191
+ test_files: []