rubocop-codeur 0.9.3 → 0.9.5

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: f03cbeb527302bab3abefb7a2926bee8507912c27f8e22d2b6d5754ea043cb82
4
- data.tar.gz: 8bf3dd574a487ec873ff90298a514c9b178b74786ee147f30567a2e23f6f6936
3
+ metadata.gz: 1bc3ed13a18edb301123c79eb41b8f66fea62695261d23fd4887f50ed6dff0ed
4
+ data.tar.gz: 2e6034737b4e91c28f907b09fa236236ccee6a2b67bb7c49f31dae2f01a96dfd
5
5
  SHA512:
6
- metadata.gz: 19ae0d574adb870cdbc6c94d974bd6e833a2a183460cb61abb1c69af73461b3fbb4ebad066a14ad4f03f8f77850b3ea776bde81c82dddd15e592162a8b4c9734
7
- data.tar.gz: 20247e0f645f2ca61e71c7b791e03d7634aae755c8b4aa4d1003380ce3c52f87094f1cc2775fb73fbe199198978d1505e7179aee9785ccacba932b4b1757440b
6
+ metadata.gz: 2c3afc9d07eabfeac17d377c6fbf31871e3ee402df7ea4e820dc58bac713a84f159f7ea9a6820c93022684e52fbcb90f63ff36b7d2310da73a420e26647206d8
7
+ data.tar.gz: 20ed7fb9dbe5b566c03f6e69cbc536a43aff69d2ee7a5a05e617ac1a9695504e96ab3d95480f42d91cc977023666b7a4087705ad433eaf627891bfd640242d58
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-codeur (0.9.3)
4
+ rubocop-codeur (0.9.5)
5
5
  rubocop (~> 1.25)
6
6
  rubocop-capybara (~> 2.17)
7
7
  rubocop-minitest (~> 0.20)
@@ -11,7 +11,7 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activesupport (7.1.2)
14
+ activesupport (7.1.3.2)
15
15
  base64
16
16
  bigdecimal
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -23,8 +23,8 @@ GEM
23
23
  tzinfo (~> 2.0)
24
24
  ast (2.4.2)
25
25
  base64 (0.2.0)
26
- bigdecimal (3.1.4)
27
- concurrent-ruby (1.2.2)
26
+ bigdecimal (3.1.6)
27
+ concurrent-ruby (1.2.3)
28
28
  connection_pool (2.4.1)
29
29
  docile (1.4.0)
30
30
  drb (2.2.0)
@@ -33,23 +33,23 @@ GEM
33
33
  concurrent-ruby (~> 1.0)
34
34
  json (2.7.1)
35
35
  language_server-protocol (3.17.0.3)
36
- minitest (5.20.0)
36
+ minitest (5.22.2)
37
37
  mutex_m (0.2.0)
38
- parallel (1.23.0)
39
- parser (3.2.2.4)
38
+ parallel (1.24.0)
39
+ parser (3.3.0.5)
40
40
  ast (~> 2.4.1)
41
41
  racc
42
42
  racc (1.7.3)
43
- rack (3.0.8)
43
+ rack (3.0.9.1)
44
44
  rainbow (3.1.1)
45
45
  rake (13.1.0)
46
- regexp_parser (2.8.3)
46
+ regexp_parser (2.9.0)
47
47
  rexml (3.2.6)
48
- rubocop (1.58.0)
48
+ rubocop (1.60.2)
49
49
  json (~> 2.3)
50
50
  language_server-protocol (>= 3.17.0)
51
51
  parallel (~> 1.10)
52
- parser (>= 3.2.2.4)
52
+ parser (>= 3.3.0.2)
53
53
  rainbow (>= 2.2.2, < 4.0)
54
54
  regexp_parser (>= 1.8, < 3.0)
55
55
  rexml (>= 3.2.5, < 4.0)
@@ -58,14 +58,15 @@ GEM
58
58
  unicode-display_width (>= 2.4.0, < 3.0)
59
59
  rubocop-ast (1.30.0)
60
60
  parser (>= 3.2.1.0)
61
- rubocop-capybara (2.19.0)
61
+ rubocop-capybara (2.20.0)
62
62
  rubocop (~> 1.41)
63
- rubocop-minitest (0.33.0)
63
+ rubocop-minitest (0.34.5)
64
64
  rubocop (>= 1.39, < 2.0)
65
- rubocop-performance (1.19.1)
66
- rubocop (>= 1.7.0, < 2.0)
67
- rubocop-ast (>= 0.4.0)
68
- rubocop-rails (2.22.2)
65
+ rubocop-ast (>= 1.30.0, < 2.0)
66
+ rubocop-performance (1.20.2)
67
+ rubocop (>= 1.48.1, < 2.0)
68
+ rubocop-ast (>= 1.30.0, < 2.0)
69
+ rubocop-rails (2.23.1)
69
70
  activesupport (>= 4.2.0)
70
71
  rack (>= 1.1)
71
72
  rubocop (>= 1.33.0, < 2.0)
data/default.yml CHANGED
@@ -277,6 +277,9 @@ Rails/FilePath:
277
277
  Rails/I18nLocaleTexts:
278
278
  Enabled: false
279
279
 
280
+ Rails/ReflectionClassName:
281
+ Enabled: false
282
+
280
283
  Rails/ReversibleMigration:
281
284
  Enabled: true
282
285
  Exclude:
@@ -305,6 +308,7 @@ Rails/UnknownEnv:
305
308
  - test
306
309
  - staging
307
310
  - production
311
+ - local
308
312
 
309
313
  Style/AsciiComments:
310
314
  Enabled: false
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Codeur
5
- VERSION = '0.9.3'
5
+ VERSION = '0.9.5'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-codeur
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.3
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codeur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-11 00:00:00.000000000 Z
11
+ date: 2024-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop