rubycritic 4.9.0 → 4.9.2
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/CHANGELOG.md +20 -3
- data/README.md +32 -26
- data/lib/rubycritic/analysers/coverage.rb +6 -7
- data/lib/rubycritic/analysers/helpers/reek.rb +5 -1
- data/lib/rubycritic/cli/options/argv.rb +5 -1
- data/lib/rubycritic/cli/options/file.rb +5 -0
- data/lib/rubycritic/configuration.rb +4 -3
- data/lib/rubycritic/core/analysed_modules_collection.rb +2 -2
- data/lib/rubycritic/source_control_systems/mercurial.rb +2 -1
- data/lib/rubycritic/version.rb +1 -1
- metadata +72 -33
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78f041e961ddd2844538f7fca6622192a8b2a9f64caa540cb8fc4b08f13362e0
|
4
|
+
data.tar.gz: 1bb52128d47548eb1969869552d26e7ef81940c61aa22b85777652f1a53659f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 202a4ba45550da029562867c284a941c65666c013fbd75dfa2be0443ce2483149f4c2c751584ff90c10242014a8f630750e6413571304b3927faecb093062b8a
|
7
|
+
data.tar.gz: 9e4af57d0f10840698a488da7ce77951ef693c022fa16888bc1387fa73d9e3067eab3cd2ee7a690e4640880940426627b3b3089576c21671c408b7af77a41467
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,19 @@
|
|
1
|
-
# main [(unreleased)](https://github.com/whitesmith/rubycritic/compare/v4.9.
|
1
|
+
# main [(unreleased)](https://github.com/whitesmith/rubycritic/compare/v4.9.2...main)
|
2
|
+
|
3
|
+
# v4.9.2 / 2025-04-08 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.9.1...v4.9.2)
|
4
|
+
|
5
|
+
* [CHANGE] Adds development dependency for gems removed from standard library in Ruby 3.5 -- ostruct, irb, rdoc (by [@faisal][])
|
6
|
+
* [CHANGE] Bump aruba, fakefs, minitest, mocha, reek, rubocop dependencies (by [@faisal][])
|
7
|
+
* [CHANGE] Loosen Rubocop dependency to pick up any new versions < 2.0 (by [@faisal][])
|
8
|
+
* [CHANGE] Add .solargraph.yml config file to enable Solargraph LSP use in editors such as BBedit (by [@faisal][])
|
9
|
+
* [CHANGE] Drop support for Ruby 2.7.x, 3.0.x (by [@faisal][])
|
10
|
+
* [CHANGE] Cache the reek configuration loading for faster execution (by [@raff-s][])
|
11
|
+
|
12
|
+
# v4.9.1 / 2024-04-14 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.9.0...v4.9.1)
|
13
|
+
|
14
|
+
* [CHANGE] Bump cucumber, minitest, parser, rake, reek, rubocop, and ruby_parser dependencies (by [@faisal][])
|
15
|
+
* [CHANGE] Fix some typos (by [@jbampton][])
|
16
|
+
* [FEATURE] Add coverage_path configuration option (by [@exoego][])
|
2
17
|
|
3
18
|
# v4.9.0 / 2023-10-18 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.8.1...v4.9.0)
|
4
19
|
|
@@ -103,7 +118,7 @@
|
|
103
118
|
|
104
119
|
# v4.3.0 / 2019-12-26 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.2.2...v4.3.0)
|
105
120
|
|
106
|
-
* [FEATURE] Show which files are
|
121
|
+
* [FEATURE] Show which files are uncommitted in git (by [@GeoffTidey][])
|
107
122
|
* [BUGFIX] Fixes TypeError when `.resultset.json` is not found (by [@etagwerker][])
|
108
123
|
|
109
124
|
# v4.2.2 / 2019-11-12 [(commits)](https://github.com/whitesmith/rubycritic/compare/v4.2.1...v4.2.2)
|
@@ -341,7 +356,7 @@
|
|
341
356
|
|
342
357
|
* [FEATURE] Add CI mode that only analyses the last commit
|
343
358
|
* [FEATURE] Add partial support for Mercurial
|
344
|
-
* [FEATURE] Allow using RubyCritic
|
359
|
+
* [FEATURE] Allow using RubyCritic programmatically
|
345
360
|
* [CHANGE] Update to Reek 1.6.0 (from 1.3.8)
|
346
361
|
* [BUGFIX] Fix issue #18 - Prevent encoding issues when using Git
|
347
362
|
|
@@ -442,3 +457,5 @@
|
|
442
457
|
[@96RadhikaJadhav]: https://github.com/96RadhikaJadhav
|
443
458
|
[@Fito]: https://github.com/Fito
|
444
459
|
[@fbuys]: https://github.com/fbuys
|
460
|
+
[@exoego]: https://github.com/exoego
|
461
|
+
[@raff-s]: https://github.com/raff-s
|
data/README.md
CHANGED
@@ -10,17 +10,19 @@ RubyCritic is a gem that wraps around static analysis gems such as [Reek][1], [F
|
|
10
10
|
|
11
11
|
## Table of Contents
|
12
12
|
|
13
|
-
- [
|
14
|
-
- [
|
15
|
-
- [
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
- [
|
20
|
-
- [
|
21
|
-
- [
|
22
|
-
- [
|
23
|
-
- [
|
13
|
+
- [RubyCritic](#rubycritic)
|
14
|
+
- [Table of Contents](#table-of-contents)
|
15
|
+
- [Overview](#overview)
|
16
|
+
- [Getting Started](#getting-started)
|
17
|
+
- [Usage](#usage)
|
18
|
+
- [Analyzer Configuration](#analyzer-configuration)
|
19
|
+
- [Alternative Usage Methods](#alternative-usage-methods)
|
20
|
+
- [Rake Task](#rake-task)
|
21
|
+
- [Formatters](#formatters)
|
22
|
+
- [Compatibility](#compatibility)
|
23
|
+
- [Improving RubyCritic](#improving-rubycritic)
|
24
|
+
- [Contributors](#contributors)
|
25
|
+
- [Credits](#credits)
|
24
26
|
|
25
27
|
## Overview
|
26
28
|
|
@@ -107,19 +109,20 @@ For a full list of the command-line options run:
|
|
107
109
|
$ rubycritic --help
|
108
110
|
```
|
109
111
|
|
110
|
-
| Command flag
|
111
|
-
|
112
|
-
| `-v` / `--version`
|
113
|
-
| `-p` / `--path`
|
114
|
-
|
|
115
|
-
| `--
|
116
|
-
|
|
117
|
-
| `-
|
118
|
-
| `-
|
119
|
-
| `-
|
120
|
-
| `--
|
121
|
-
| `--
|
122
|
-
| `--
|
112
|
+
| Command flag | Description |
|
113
|
+
|----------------------------------|-----------------------------------------------------------------|
|
114
|
+
| `-v` / `--version` | Displays the current version and exits |
|
115
|
+
| `-p` / `--path` | Set path where report will be saved (tmp/rubycritic by default) |
|
116
|
+
| `--coverage-path` | Set path where SimpleCov will be saved (./coverage by default) |
|
117
|
+
| `-f` / `--format` | Report smells in the given format(s)<sup>1</sup> |
|
118
|
+
| `--custom-format path:classname` | Load and instantiate custom formatter(s)<sup>2</sup> |
|
119
|
+
| `-s` / `--minimum-score` | Set a minimum score (FLOAT: ex: 96.28), default: 0 |
|
120
|
+
| `-m` / `--mode-ci` | Use CI mode<sup>3</sup> |
|
121
|
+
| `-b` / `--branch` | Set branch to compare |
|
122
|
+
| `-t` / `--maximum-decrease` | Threshold for score difference between two branches<sup>4</sup> |
|
123
|
+
| `--deduplicate-symlinks` | De-duplicate symlinks based on their final target |
|
124
|
+
| `--suppress-ratings` | Suppress letter ratings |
|
125
|
+
| `--no-browser` | Do not open html report with browser |
|
123
126
|
|
124
127
|
1. Available output formats:
|
125
128
|
- `html` (default; will open in a browser)
|
@@ -140,6 +143,7 @@ mode_ci:
|
|
140
143
|
branch: 'production' # default is main
|
141
144
|
branch: 'production' # default is main
|
142
145
|
path: '/tmp/mycustompath' # Set path where report will be saved (tmp/rubycritic by default)
|
146
|
+
coverage_path: '/tmp/coverage' # Set path where SimpleCov coverage will be saved (./coverage by default)
|
143
147
|
threshold_score: 10 # default is 0
|
144
148
|
deduplicate_symlinks: true # default is false
|
145
149
|
suppress_ratings: true # default is false
|
@@ -239,9 +243,11 @@ RubyCritic is supporting Ruby versions:
|
|
239
243
|
| 2.4 | [v4.7.0](https://github.com/whitesmith/rubycritic/tree/v4.7.0) |
|
240
244
|
| 2.5 | [v4.7.0](https://github.com/whitesmith/rubycritic/tree/v4.7.0) |
|
241
245
|
| 2.6 | [v4.7.0](https://github.com/whitesmith/rubycritic/tree/v4.7.0) |
|
242
|
-
| 2.7 |
|
246
|
+
| 2.7 | [v4.9.x](https://github.com/whitesmith/rubycritic/tree/v4.9.1) |
|
243
247
|
| 3.0 | latest |
|
244
248
|
| 3.1 | latest |
|
249
|
+
| 3.2 | latest |
|
250
|
+
| 3.3 | latest |
|
245
251
|
|
246
252
|
## Improving RubyCritic
|
247
253
|
|
@@ -259,7 +265,7 @@ See RubyCritic's [contributing guidelines](https://github.com/whitesmith/rubycri
|
|
259
265
|
|
260
266
|
The current core team consists of:
|
261
267
|
|
262
|
-
* [Nuno Silva](https://github.com/
|
268
|
+
* [Nuno Silva](https://github.com/nunosilva800)
|
263
269
|
* [Lucas Mazza](https://github.com/lucasmazza)
|
264
270
|
* [Timo Rößner](https://github.com/troessner)
|
265
271
|
|
@@ -48,6 +48,9 @@ module RubyCritic
|
|
48
48
|
|
49
49
|
# The path to the cache file
|
50
50
|
def resultset_path
|
51
|
+
if (cp = Config.coverage_path)
|
52
|
+
SimpleCov.coverage_dir(cp)
|
53
|
+
end
|
51
54
|
File.join(SimpleCov.coverage_path, RESULTSET_FILENAME)
|
52
55
|
end
|
53
56
|
|
@@ -85,13 +88,13 @@ module RubyCritic
|
|
85
88
|
|
86
89
|
# Ensure only one process is reading or writing the resultset at any
|
87
90
|
# given time
|
88
|
-
def synchronize_resultset(&
|
91
|
+
def synchronize_resultset(&)
|
89
92
|
# make it reentrant
|
90
93
|
return yield if defined?(@resultset_locked) && @resultset_locked == true
|
91
94
|
|
92
95
|
return yield unless File.exist?(resultset_writelock)
|
93
96
|
|
94
|
-
with_lock(&
|
97
|
+
with_lock(&)
|
95
98
|
end
|
96
99
|
|
97
100
|
def with_lock
|
@@ -112,11 +115,7 @@ module RubyCritic
|
|
112
115
|
if Gem.loaded_specs['simplecov'].version >= Gem::Version.new('0.19')
|
113
116
|
::SimpleCov::Result.from_hash(resultset)
|
114
117
|
else
|
115
|
-
|
116
|
-
resultset.each do |command_name, data|
|
117
|
-
array << ::SimpleCov::Result.from_hash(command_name => data)
|
118
|
-
end
|
119
|
-
array
|
118
|
+
resultset.map { |command_name, data| ::SimpleCov::Result.from_hash(command_name => data) }
|
120
119
|
end
|
121
120
|
end
|
122
121
|
end
|
@@ -4,8 +4,12 @@ require 'reek'
|
|
4
4
|
|
5
5
|
module RubyCritic
|
6
6
|
class Reek < ::Reek::Examiner
|
7
|
+
def self.configuration
|
8
|
+
@configuration ||= ::Reek::Configuration::AppConfiguration.from_default_path
|
9
|
+
end
|
10
|
+
|
7
11
|
def initialize(analysed_module)
|
8
|
-
super(analysed_module, configuration:
|
12
|
+
super(analysed_module, configuration: self.class.configuration)
|
9
13
|
end
|
10
14
|
end
|
11
15
|
end
|
@@ -95,6 +95,10 @@ module RubyCritic
|
|
95
95
|
self.no_browser = true
|
96
96
|
end
|
97
97
|
|
98
|
+
opts.on('--coverage-path [PATH]', 'SimpleCov coverage will be saved (./coverage by default)') do |path|
|
99
|
+
@coverage_path = path
|
100
|
+
end
|
101
|
+
|
98
102
|
opts.on_tail('-v', '--version', "Show gem's version") do
|
99
103
|
self.mode = :version
|
100
104
|
end
|
@@ -129,7 +133,7 @@ module RubyCritic
|
|
129
133
|
|
130
134
|
attr_accessor :mode, :root, :formats, :formatters, :deduplicate_symlinks,
|
131
135
|
:suppress_ratings, :minimum_score, :churn_after, :no_browser,
|
132
|
-
:parser, :base_branch, :feature_branch, :threshold_score
|
136
|
+
:parser, :base_branch, :feature_branch, :threshold_score, :coverage_path
|
133
137
|
|
134
138
|
def paths
|
135
139
|
@argv unless @argv.empty?
|
@@ -22,6 +22,7 @@ module RubyCritic
|
|
22
22
|
{
|
23
23
|
mode: mode,
|
24
24
|
root: root,
|
25
|
+
coverage_path: coverage_path,
|
25
26
|
formats: formats,
|
26
27
|
deduplicate_symlinks: deduplicate_symlinks,
|
27
28
|
paths: paths,
|
@@ -59,6 +60,10 @@ module RubyCritic
|
|
59
60
|
options['path']
|
60
61
|
end
|
61
62
|
|
63
|
+
def coverage_path
|
64
|
+
options['coverage_path']
|
65
|
+
end
|
66
|
+
|
62
67
|
def threshold_score
|
63
68
|
options['threshold_score']
|
64
69
|
end
|
@@ -6,7 +6,7 @@ module RubyCritic
|
|
6
6
|
class Configuration
|
7
7
|
attr_reader :root
|
8
8
|
attr_accessor :source_control_system, :mode, :formats, :formatters, :deduplicate_symlinks,
|
9
|
-
:suppress_ratings, :open_with, :no_browser, :base_branch,
|
9
|
+
:suppress_ratings, :open_with, :no_browser, :base_branch, :coverage_path,
|
10
10
|
:feature_branch, :base_branch_score, :feature_branch_score,
|
11
11
|
:base_root_directory, :feature_root_directory,
|
12
12
|
:compare_root_directory, :threshold_score, :base_branch_collection,
|
@@ -19,6 +19,7 @@ module RubyCritic
|
|
19
19
|
self.suppress_ratings = options[:suppress_ratings]
|
20
20
|
self.open_with = options[:open_with]
|
21
21
|
self.no_browser = options[:no_browser]
|
22
|
+
self.coverage_path = options[:coverage_path]
|
22
23
|
self.threshold_score = options[:threshold_score].to_i
|
23
24
|
setup_analysis_targets(options)
|
24
25
|
setup_version_control(options)
|
@@ -69,9 +70,9 @@ module RubyCritic
|
|
69
70
|
!Config.no_browser && %i[compare_branches ci].include?(Config.mode)
|
70
71
|
end
|
71
72
|
|
72
|
-
def self.method_missing(method,
|
73
|
+
def self.method_missing(method, ...)
|
73
74
|
if configuration.respond_to?(method)
|
74
|
-
configuration.public_send(method,
|
75
|
+
configuration.public_send(method, ...)
|
75
76
|
else
|
76
77
|
super
|
77
78
|
end
|
data/lib/rubycritic/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubycritic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.9.
|
4
|
+
version: 4.9.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Guilherme Simoes
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-09 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: flay
|
@@ -58,14 +57,14 @@ dependencies:
|
|
58
57
|
requirements:
|
59
58
|
- - ">="
|
60
59
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.
|
60
|
+
version: 3.3.0.5
|
62
61
|
type: :runtime
|
63
62
|
prerelease: false
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
65
64
|
requirements:
|
66
65
|
- - ">="
|
67
66
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.
|
67
|
+
version: 3.3.0.5
|
69
68
|
- !ruby/object:Gem::Dependency
|
70
69
|
name: rainbow
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,7 +85,7 @@ dependencies:
|
|
86
85
|
requirements:
|
87
86
|
- - "~>"
|
88
87
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
88
|
+
version: 6.4.0
|
90
89
|
- - "<"
|
91
90
|
- !ruby/object:Gem::Version
|
92
91
|
version: '7.0'
|
@@ -96,7 +95,7 @@ dependencies:
|
|
96
95
|
requirements:
|
97
96
|
- - "~>"
|
98
97
|
- !ruby/object:Gem::Version
|
99
|
-
version:
|
98
|
+
version: 6.4.0
|
100
99
|
- - "<"
|
101
100
|
- !ruby/object:Gem::Version
|
102
101
|
version: '7.0'
|
@@ -120,14 +119,14 @@ dependencies:
|
|
120
119
|
requirements:
|
121
120
|
- - "~>"
|
122
121
|
- !ruby/object:Gem::Version
|
123
|
-
version: '3.
|
122
|
+
version: '3.21'
|
124
123
|
type: :runtime
|
125
124
|
prerelease: false
|
126
125
|
version_requirements: !ruby/object:Gem::Requirement
|
127
126
|
requirements:
|
128
127
|
- - "~>"
|
129
128
|
- !ruby/object:Gem::Version
|
130
|
-
version: '3.
|
129
|
+
version: '3.21'
|
131
130
|
- !ruby/object:Gem::Dependency
|
132
131
|
name: simplecov
|
133
132
|
requirement: !ruby/object:Gem::Requirement
|
@@ -176,14 +175,14 @@ dependencies:
|
|
176
175
|
requirements:
|
177
176
|
- - "~>"
|
178
177
|
- !ruby/object:Gem::Version
|
179
|
-
version: 2.
|
178
|
+
version: 2.3.0
|
180
179
|
type: :development
|
181
180
|
prerelease: false
|
182
181
|
version_requirements: !ruby/object:Gem::Requirement
|
183
182
|
requirements:
|
184
183
|
- - "~>"
|
185
184
|
- !ruby/object:Gem::Version
|
186
|
-
version: 2.
|
185
|
+
version: 2.3.0
|
187
186
|
- !ruby/object:Gem::Dependency
|
188
187
|
name: bundler
|
189
188
|
requirement: !ruby/object:Gem::Requirement
|
@@ -224,7 +223,7 @@ dependencies:
|
|
224
223
|
requirements:
|
225
224
|
- - "~>"
|
226
225
|
- !ruby/object:Gem::Version
|
227
|
-
version: 9.
|
226
|
+
version: 9.2.1
|
228
227
|
- - "!="
|
229
228
|
- !ruby/object:Gem::Version
|
230
229
|
version: 9.0.0
|
@@ -234,7 +233,7 @@ dependencies:
|
|
234
233
|
requirements:
|
235
234
|
- - "~>"
|
236
235
|
- !ruby/object:Gem::Version
|
237
|
-
version: 9.
|
236
|
+
version: 9.2.1
|
238
237
|
- - "!="
|
239
238
|
- !ruby/object:Gem::Version
|
240
239
|
version: 9.0.0
|
@@ -258,14 +257,28 @@ dependencies:
|
|
258
257
|
requirements:
|
259
258
|
- - "~>"
|
260
259
|
- !ruby/object:Gem::Version
|
261
|
-
version: 2.
|
260
|
+
version: 2.6.0
|
262
261
|
type: :development
|
263
262
|
prerelease: false
|
264
263
|
version_requirements: !ruby/object:Gem::Requirement
|
265
264
|
requirements:
|
266
265
|
- - "~>"
|
267
266
|
- !ruby/object:Gem::Version
|
268
|
-
version: 2.
|
267
|
+
version: 2.6.0
|
268
|
+
- !ruby/object:Gem::Dependency
|
269
|
+
name: irb
|
270
|
+
requirement: !ruby/object:Gem::Requirement
|
271
|
+
requirements:
|
272
|
+
- - ">="
|
273
|
+
- !ruby/object:Gem::Version
|
274
|
+
version: '0'
|
275
|
+
type: :development
|
276
|
+
prerelease: false
|
277
|
+
version_requirements: !ruby/object:Gem::Requirement
|
278
|
+
requirements:
|
279
|
+
- - ">="
|
280
|
+
- !ruby/object:Gem::Version
|
281
|
+
version: '0'
|
269
282
|
- !ruby/object:Gem::Dependency
|
270
283
|
name: mdl
|
271
284
|
requirement: !ruby/object:Gem::Requirement
|
@@ -292,7 +305,7 @@ dependencies:
|
|
292
305
|
requirements:
|
293
306
|
- - "~>"
|
294
307
|
- !ruby/object:Gem::Version
|
295
|
-
version: 5.
|
308
|
+
version: 5.25.2
|
296
309
|
- - ">="
|
297
310
|
- !ruby/object:Gem::Version
|
298
311
|
version: 5.3.0
|
@@ -302,7 +315,7 @@ dependencies:
|
|
302
315
|
requirements:
|
303
316
|
- - "~>"
|
304
317
|
- !ruby/object:Gem::Version
|
305
|
-
version: 5.
|
318
|
+
version: 5.25.2
|
306
319
|
- - ">="
|
307
320
|
- !ruby/object:Gem::Version
|
308
321
|
version: 5.3.0
|
@@ -332,21 +345,35 @@ dependencies:
|
|
332
345
|
requirements:
|
333
346
|
- - "~>"
|
334
347
|
- !ruby/object:Gem::Version
|
335
|
-
version: 2.1
|
348
|
+
version: 2.7.1
|
336
349
|
type: :development
|
337
350
|
prerelease: false
|
338
351
|
version_requirements: !ruby/object:Gem::Requirement
|
339
352
|
requirements:
|
340
353
|
- - "~>"
|
341
354
|
- !ruby/object:Gem::Version
|
342
|
-
version: 2.1
|
355
|
+
version: 2.7.1
|
356
|
+
- !ruby/object:Gem::Dependency
|
357
|
+
name: ostruct
|
358
|
+
requirement: !ruby/object:Gem::Requirement
|
359
|
+
requirements:
|
360
|
+
- - ">="
|
361
|
+
- !ruby/object:Gem::Version
|
362
|
+
version: '0'
|
363
|
+
type: :development
|
364
|
+
prerelease: false
|
365
|
+
version_requirements: !ruby/object:Gem::Requirement
|
366
|
+
requirements:
|
367
|
+
- - ">="
|
368
|
+
- !ruby/object:Gem::Version
|
369
|
+
version: '0'
|
343
370
|
- !ruby/object:Gem::Dependency
|
344
371
|
name: rake
|
345
372
|
requirement: !ruby/object:Gem::Requirement
|
346
373
|
requirements:
|
347
374
|
- - "~>"
|
348
375
|
- !ruby/object:Gem::Version
|
349
|
-
version: 13.0
|
376
|
+
version: 13.2.0
|
350
377
|
- - ">="
|
351
378
|
- !ruby/object:Gem::Version
|
352
379
|
version: 11.0.0
|
@@ -356,10 +383,24 @@ dependencies:
|
|
356
383
|
requirements:
|
357
384
|
- - "~>"
|
358
385
|
- !ruby/object:Gem::Version
|
359
|
-
version: 13.0
|
386
|
+
version: 13.2.0
|
360
387
|
- - ">="
|
361
388
|
- !ruby/object:Gem::Version
|
362
389
|
version: 11.0.0
|
390
|
+
- !ruby/object:Gem::Dependency
|
391
|
+
name: rdoc
|
392
|
+
requirement: !ruby/object:Gem::Requirement
|
393
|
+
requirements:
|
394
|
+
- - ">="
|
395
|
+
- !ruby/object:Gem::Version
|
396
|
+
version: '0'
|
397
|
+
type: :development
|
398
|
+
prerelease: false
|
399
|
+
version_requirements: !ruby/object:Gem::Requirement
|
400
|
+
requirements:
|
401
|
+
- - ">="
|
402
|
+
- !ruby/object:Gem::Version
|
403
|
+
version: '0'
|
363
404
|
- !ruby/object:Gem::Dependency
|
364
405
|
name: rexml
|
365
406
|
requirement: !ruby/object:Gem::Requirement
|
@@ -378,22 +419,22 @@ dependencies:
|
|
378
419
|
name: rubocop
|
379
420
|
requirement: !ruby/object:Gem::Requirement
|
380
421
|
requirements:
|
381
|
-
- - "~>"
|
382
|
-
- !ruby/object:Gem::Version
|
383
|
-
version: 1.57.1
|
384
422
|
- - ">="
|
385
423
|
- !ruby/object:Gem::Version
|
386
|
-
version: 1.
|
424
|
+
version: 1.72.0
|
425
|
+
- - "<"
|
426
|
+
- !ruby/object:Gem::Version
|
427
|
+
version: '2.0'
|
387
428
|
type: :development
|
388
429
|
prerelease: false
|
389
430
|
version_requirements: !ruby/object:Gem::Requirement
|
390
431
|
requirements:
|
391
|
-
- - "~>"
|
392
|
-
- !ruby/object:Gem::Version
|
393
|
-
version: 1.57.1
|
394
432
|
- - ">="
|
395
433
|
- !ruby/object:Gem::Version
|
396
|
-
version: 1.
|
434
|
+
version: 1.72.0
|
435
|
+
- - "<"
|
436
|
+
- !ruby/object:Gem::Version
|
437
|
+
version: '2.0'
|
397
438
|
- !ruby/object:Gem::Dependency
|
398
439
|
name: rubocop-minitest
|
399
440
|
requirement: !ruby/object:Gem::Requirement
|
@@ -564,7 +605,6 @@ licenses:
|
|
564
605
|
- MIT
|
565
606
|
metadata:
|
566
607
|
rubygems_mfa_required: 'true'
|
567
|
-
post_install_message:
|
568
608
|
rdoc_options: []
|
569
609
|
require_paths:
|
570
610
|
- lib
|
@@ -572,15 +612,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
572
612
|
requirements:
|
573
613
|
- - ">="
|
574
614
|
- !ruby/object:Gem::Version
|
575
|
-
version:
|
615
|
+
version: 3.1.0
|
576
616
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
577
617
|
requirements:
|
578
618
|
- - ">="
|
579
619
|
- !ruby/object:Gem::Version
|
580
620
|
version: '0'
|
581
621
|
requirements: []
|
582
|
-
rubygems_version: 3.
|
583
|
-
signing_key:
|
622
|
+
rubygems_version: 3.6.2
|
584
623
|
specification_version: 4
|
585
624
|
summary: RubyCritic is a Ruby code quality reporter
|
586
625
|
test_files: []
|