fastlane-plugin-forsis 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab0d0ac2b67065c08bad779629b4018f40283cfc4e249f7fdae867320bbec5e5
4
- data.tar.gz: be0cf65fd5db78c85eaad85464f266d47a4c4f30593ae60668811e1cf7fbcc18
3
+ metadata.gz: ffc2ba339accb4cc2f8ecc26d0a9c2b3926caaf3880ca2450f67752b4edddcae
4
+ data.tar.gz: d864a8811e6f35401fc0689be53be901e995cfae577ba5525fdb8158c5448b43
5
5
  SHA512:
6
- metadata.gz: b021735b9d847889f31342e5d3e073bdecf92c34d83937906efe3dd5002c746523ff59c52d0ce1fe58e805d9365a2f33e3d294fcea7acd6dd2cae5a746de3a2e
7
- data.tar.gz: 8f642d422400b2052096acef5c850e0ea9d72ea8e539b9eb9d0514dfe63b9278b6c7b572908fae277892a032ee8d58287308b56512feb9af15e2f27191223cdc
6
+ metadata.gz: 71d2c9735c37ee5aae6100478759e21f7d6e8ef7cec399bc1be13291a71c24289601cff33a12145265b2d96357badaebaed03d345472757db323584a4e88b907
7
+ data.tar.gz: 53414c7ea5545f47d7d97e127c371412632bdcc6392148f87867c37884885dec72b191b9146f7d6fe8858ff3c9985cbc005b56d809b2d5641583fc31875f712e
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
- Copyright (c) 2019 Azohra/forsis
3
+ Copyright (c) 2022 Tumiya/forsis
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
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # forsis plugin
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-forsis)
4
- [![Gem](https://img.shields.io/gem/v/fastlane-plugin-forsis.svg?style=flat)](https://rubygems.org/gems/fastlane-plugin-forsis)
4
+ [![Gem Version](https://badge.fury.io/rb/fastlane-plugin-forsis.svg)](https://rubygems.org/gems/fastlane-plugin-forsis)
5
5
  [![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
6
- [![Actions Status](https://github.com/azohra/forsis/actions/workflows/CI-workflow.yml/badge.svg)](https://github.com/azohra/forsis/actions/workflows/CI-workflow.yml?query=branch%3Amaster)
6
+ [![Actions Status](https://github.com/Tumiya/forsis/actions/workflows/CI-workflow.yml/badge.svg)](https://github.com/Tumiya/forsis/actions/workflows/CI-workflow.yml?query=branch%3Amaster)
7
7
 
8
8
 
9
9
  **forsis** is a [_fastlane_](https://github.com/fastlane/fastlane) plugin that will be helpful to those swift developers who use SonarQube to analyze their code. forsis uses JUnit test reports generated by fastlane to produce generic test execution reports supported by SonarQube.
@@ -21,7 +21,7 @@ In addidtion, you can see a breakdown of test results under project Measures > C
21
21
  To get started with `fastlane-plugin-forsis`, add it to your project by running:
22
22
 
23
23
  ```bash
24
- fastlane add_plugin forsis
24
+ bundle exec fastlane add_plugin forsis
25
25
  ```
26
26
  Start using the plugin by adding this example 'lane' to your Fastfile:
27
27
 
@@ -66,31 +66,14 @@ This plugin creates an XML test report called `Test_sonarqube_report.xml`. To ge
66
66
  * `sonar.testExecutionReportPaths` is the path to the SonarQube test report file generated by the plugin *i.e.*, the value of the `sonar_report_directory` in the forsis action followed by the name of the XML file that contains the report. This would be `fastlane/Test_sonarqube_report.xml`, if sonar_report_directory was not set.
67
67
 
68
68
  If you need help setting up analysis parameters for SonarQube, refer to the [SonarQube Analysis Parameters](https://docs.sonarqube.org/latest/analysis/analysis-parameters/) documentation.
69
- ## Run tests for this plugin
70
-
71
- To run both the tests, and code style validation, run
72
-
73
- ```
74
- rake
75
- ```
76
-
77
- To automatically fix many of the styling issues, use
78
- ```
79
- rubocop -a
80
- ```
81
69
 
82
70
  ## Troubleshooting
83
71
 
84
72
  If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
85
73
 
86
- ## Using _fastlane_ Plugins
87
-
88
- For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
89
-
90
74
  ## About _fastlane_
91
75
 
92
76
  _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).
93
- This software is available as open source under the terms of the MIT License.
94
77
 
95
78
  ## Contributing
96
79
 
@@ -99,9 +82,9 @@ Bug reports and suggestions for improvements are always welcome. PRs are even be
99
82
  If you run into any issues, before submitting a new GitHub issue, please make sure to
100
83
 
101
84
  * Check out the entire README on this repo
102
- * Search for [existing GitHub issues](https://github.com/azohra/forsis/issues)
85
+ * Search for [existing GitHub issues](https://github.com/Tumiya/forsis/issues)
103
86
 
104
- If the above doesn't help, please submit an issue on [GitHub](https://github.com/azohra/forsis/issues). When reporting a bug, please make sure to include a spec that highlights the bug.
87
+ If the above doesn't help, please submit an issue on [GitHub](https://github.com/Tumiya/forsis/issues). When reporting a bug, please make sure to include a spec that highlights the bug.
105
88
 
106
89
  ## License
107
90
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Forsis
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-forsis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Azadeh Bagheri
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.12.5
19
+ version: 1.13.2
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: 1.12.5
26
+ version: 1.13.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -171,7 +171,7 @@ dependencies:
171
171
  - !ruby/object:Gem::Version
172
172
  version: 0.21.2
173
173
  description:
174
- email: Azadeh.Bagheri@loblaw.ca
174
+ email: azadeh.bagheri7@gmail.com
175
175
  executables: []
176
176
  extensions: []
177
177
  extra_rdoc_files: []
@@ -183,14 +183,14 @@ files:
183
183
  - lib/fastlane/plugin/forsis/helper/forsis_helper.rb
184
184
  - lib/fastlane/plugin/forsis/version.rb
185
185
  - lib/tasks/validate.rake
186
- homepage: https://github.com/azohra/forsis
186
+ homepage: https://github.com/Tumiya/forsis
187
187
  licenses:
188
188
  - MIT
189
189
  metadata:
190
- bug_tracker_uri: https://github.com/azohra/forsis/issues
191
- changelog_uri: https://github.com/azohra/forsis/releases
192
- homepage_uri: https://github.com/azohra/forsis
193
- source_code_uri: https://github.com/azohra/forsis
190
+ bug_tracker_uri: https://github.com/Tumiya/forsis/issues
191
+ changelog_uri: https://github.com/Tumiya/forsis/releases
192
+ homepage_uri: https://github.com/Tumiya/forsis
193
+ source_code_uri: https://github.com/Tumiya/forsis
194
194
  post_install_message:
195
195
  rdoc_options: []
196
196
  require_paths:
@@ -199,7 +199,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
199
199
  requirements:
200
200
  - - ">="
201
201
  - !ruby/object:Gem::Version
202
- version: '2.5'
202
+ version: 2.6.0
203
203
  required_rubygems_version: !ruby/object:Gem::Requirement
204
204
  requirements:
205
205
  - - ">="