rubocop-codeur 0.9.6 → 0.9.8

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: 9106424f73f6ac5722f3265ad277f613ad5108f71851ef56dfd347a0399f4f96
4
- data.tar.gz: 987936b75b02b82025066baaf192e52b92db8ec2b1eb7b4dc19c2cb03223809c
3
+ metadata.gz: 58d07f56b8ed8f7b452e8a4f2de6cdcadf776c9b7e373d484f5c062eb668aadf
4
+ data.tar.gz: 1cebddf8c9999223dc1bd8c321c187dbc4c2ac84edb3983fee57657679328ed4
5
5
  SHA512:
6
- metadata.gz: 5bbdd880cfa4c28430221cf90d12233cb1026308e23d47db6b15446d4ccddd40c68ab3e64fe7ff8fdc0b86cd2c299f6c3cf26b5087d31220d301f9db6115a4e7
7
- data.tar.gz: 1cc0fcd21e5c947f52ee65cb89c86ec0364f45a36bd5a586be3d2d55888aff72b9b50a6b08bb8065feaf26e749b07a193ee2d2bdc51dcb678eb28d04c705d4f5
6
+ metadata.gz: 6e2608b680c0bee94bb6f79be92571dc1e8583d18a92d7a00cc8b8228e6efc4b3838f31c1e20c7bd90b53f3db9b60141d9cf88af544757e4561eb5c5045a41fe
7
+ data.tar.gz: 4a1c085bc5b091b3358b732dc8976d176a076e3bb5151828f3ee7020f0e7c898993d99725b46be8b0ba15677fd5ad45a4c4cbe13dd55289f29cea39a0cb97af1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-codeur (0.9.6)
4
+ rubocop-codeur (0.9.8)
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.3.3)
14
+ activesupport (7.1.3.4)
15
15
  base64
16
16
  bigdecimal
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
@@ -24,7 +24,7 @@ GEM
24
24
  ast (2.4.2)
25
25
  base64 (0.2.0)
26
26
  bigdecimal (3.1.8)
27
- concurrent-ruby (1.2.3)
27
+ concurrent-ruby (1.3.3)
28
28
  connection_pool (2.4.1)
29
29
  docile (1.4.0)
30
30
  drb (2.2.1)
@@ -34,18 +34,18 @@ GEM
34
34
  language_server-protocol (3.17.0.3)
35
35
  minitest (5.23.1)
36
36
  mutex_m (0.2.0)
37
- parallel (1.24.0)
38
- parser (3.3.1.0)
37
+ parallel (1.25.1)
38
+ parser (3.3.3.0)
39
39
  ast (~> 2.4.1)
40
40
  racc
41
41
  racc (1.8.0)
42
- rack (3.0.11)
42
+ rack (3.1.3)
43
43
  rainbow (3.1.1)
44
44
  rake (13.2.1)
45
45
  regexp_parser (2.9.2)
46
- rexml (3.2.8)
47
- strscan (>= 3.0.9)
48
- rubocop (1.63.5)
46
+ rexml (3.3.0)
47
+ strscan
48
+ rubocop (1.64.1)
49
49
  json (~> 2.3)
50
50
  language_server-protocol (>= 3.17.0)
51
51
  parallel (~> 1.10)
@@ -58,12 +58,12 @@ GEM
58
58
  unicode-display_width (>= 2.4.0, < 3.0)
59
59
  rubocop-ast (1.31.3)
60
60
  parser (>= 3.3.1.0)
61
- rubocop-capybara (2.20.0)
61
+ rubocop-capybara (2.21.0)
62
62
  rubocop (~> 1.41)
63
63
  rubocop-minitest (0.35.0)
64
64
  rubocop (>= 1.61, < 2.0)
65
65
  rubocop-ast (>= 1.31.1, < 2.0)
66
- rubocop-performance (1.21.0)
66
+ rubocop-performance (1.21.1)
67
67
  rubocop (>= 1.48.1, < 2.0)
68
68
  rubocop-ast (>= 1.31.1, < 2.0)
69
69
  rubocop-rails (2.25.0)
data/default.yml CHANGED
@@ -8,12 +8,14 @@ require:
8
8
  AllCops:
9
9
  Exclude:
10
10
  - 'db/schema.rb'
11
+ - 'db/*_schema.rb'
11
12
  - 'node_modules/**/*'
12
13
  - 'public/**/*'
13
14
  - 'tmp/**/*'
14
15
  - 'vendor/**/*'
15
16
  - 'bin/*'
16
17
  - 'test/dummy/db/schema.rb'
18
+ - 'test/dummy/db/*_schema.rb'
17
19
  - 'test/dummy/tmp/**/*'
18
20
  TargetRubyVersion: 3.1
19
21
  TargetRailsVersion: 7
@@ -277,6 +279,11 @@ Rails/FilePath:
277
279
  Rails/I18nLocaleTexts:
278
280
  Enabled: false
279
281
 
282
+ Rails/NotNullColumn:
283
+ Enabled: true
284
+ Exclude:
285
+ - 'db/migrate/201*.rb'
286
+
280
287
  Rails/ReflectionClassName:
281
288
  Enabled: false
282
289
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Codeur
5
- VERSION = '0.9.6'
5
+ VERSION = '0.9.8'
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.6
4
+ version: 0.9.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codeur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-23 00:00:00.000000000 Z
11
+ date: 2024-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop