makandra-rubocop 11.2.0 → 12.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 +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +16 -11
- data/config/default.yml +396 -44
- data/config/ext/rails.yml +111 -24
- data/lib/makandra_rubocop/version.rb +1 -1
- data/makandra-rubocop.gemspec +3 -3
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79beba1f37780c5fdd06ca858be609a0fdb334082583c5010c6c13fda823d182
|
4
|
+
data.tar.gz: 29a8b15c82b85bee38a43b3463543f21b42097f260500958174cbe20e60ca6dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27cc802a7880b20c4939365555330011650d5a08a5f2930916d488b6ce38dd1d50a5bf6ac11e0cdd590774a048b25ec4c859af47a331a99d30623461dec72c26
|
7
|
+
data.tar.gz: 2ed94b16a50c26fea91cb16aa55182a7f4f983ab1eaf0826f97e8cbdf6524292492138f61789f4c2bf01c6ff202c290f20d745533601112c455aef197f8c2001
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.8
|
data/CHANGELOG.md
CHANGED
@@ -9,6 +9,15 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
9
9
|
### Compatible changes
|
10
10
|
|
11
11
|
|
12
|
+
## 12.0.0 - 2024-01-17
|
13
|
+
|
14
|
+
### Breaking changes
|
15
|
+
|
16
|
+
- Upgrade to `rubocop` 1.60.0 (was 1.39.0)
|
17
|
+
- Upgrade to `rubocop-rails` 2.23.1 (was 2.19.0)
|
18
|
+
- Drop support for Ruby 2.6 (following change from `rubocop` 1.51.0)
|
19
|
+
|
20
|
+
|
12
21
|
## 11.2.0 - 2023-10-18
|
13
22
|
|
14
23
|
### Compatible changes
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
makandra-rubocop (
|
5
|
-
rubocop (~> 1.
|
6
|
-
rubocop-rails (~> 2.
|
4
|
+
makandra-rubocop (12.0.0)
|
5
|
+
rubocop (~> 1.60.0)
|
6
|
+
rubocop-rails (~> 2.23.1)
|
7
7
|
rubocop-rspec (~> 2.13.2)
|
8
8
|
|
9
9
|
GEM
|
@@ -20,31 +20,36 @@ GEM
|
|
20
20
|
i18n (1.12.0)
|
21
21
|
concurrent-ruby (~> 1.0)
|
22
22
|
json (2.6.3)
|
23
|
+
language_server-protocol (3.17.0.3)
|
23
24
|
minitest (5.18.0)
|
24
25
|
parallel (1.22.1)
|
25
|
-
parser (3.
|
26
|
+
parser (3.3.0.4)
|
26
27
|
ast (~> 2.4.1)
|
28
|
+
racc
|
29
|
+
racc (1.7.3)
|
27
30
|
rack (3.0.7)
|
28
31
|
rainbow (3.1.1)
|
29
32
|
rake (12.3.2)
|
30
33
|
regexp_parser (2.7.0)
|
31
34
|
rexml (3.2.5)
|
32
|
-
rubocop (1.
|
35
|
+
rubocop (1.60.0)
|
33
36
|
json (~> 2.3)
|
37
|
+
language_server-protocol (>= 3.17.0)
|
34
38
|
parallel (~> 1.10)
|
35
|
-
parser (>= 3.
|
39
|
+
parser (>= 3.3.0.2)
|
36
40
|
rainbow (>= 2.2.2, < 4.0)
|
37
41
|
regexp_parser (>= 1.8, < 3.0)
|
38
42
|
rexml (>= 3.2.5, < 4.0)
|
39
|
-
rubocop-ast (>= 1.
|
43
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
40
44
|
ruby-progressbar (~> 1.7)
|
41
|
-
unicode-display_width (>=
|
42
|
-
rubocop-ast (1.
|
45
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
46
|
+
rubocop-ast (1.30.0)
|
43
47
|
parser (>= 3.2.1.0)
|
44
|
-
rubocop-rails (2.
|
48
|
+
rubocop-rails (2.23.1)
|
45
49
|
activesupport (>= 4.2.0)
|
46
50
|
rack (>= 1.1)
|
47
51
|
rubocop (>= 1.33.0, < 2.0)
|
52
|
+
rubocop-ast (>= 1.30.0, < 2.0)
|
48
53
|
rubocop-rspec (2.13.2)
|
49
54
|
rubocop (~> 1.33)
|
50
55
|
ruby-progressbar (1.13.0)
|
@@ -62,4 +67,4 @@ DEPENDENCIES
|
|
62
67
|
rake (~> 12.3)
|
63
68
|
|
64
69
|
BUNDLED WITH
|
65
|
-
2.
|
70
|
+
2.4.22
|