rubocop-codeur 0.9.0 → 0.9.2

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: 45d57887d98653fd5449c1b477eb8f254fb37f08e4dbd93ad46e4ad9a6e0ee81
4
- data.tar.gz: aabc0afc39c6b4a8366c826ae939128af0e13fb9f99ea32dc1a9f2308e287c62
3
+ metadata.gz: 913c1f2a6e5696005bebbc7ba5683064273b0727d131e9937b76ec3763bb9889
4
+ data.tar.gz: 3fced46580a9d1e80ba5f572a9e858c6da56efb7f9e5e9f6c23c8eeb714a24a1
5
5
  SHA512:
6
- metadata.gz: 63d494c5d5174d82e0ce9e97e6f7457bdc9a6506beb3734f84c9577c62ff5a5e9eb3ee7c8b96a0e1450cc3cdc37061fbe5c2890b0004a78a82bf8ed0cc61587d
7
- data.tar.gz: 41d79c1e26ef61591fa090d8fbe81e629a73b0e363f4db9665e09b7e2c90c08ebeff596de09d5670f825241da95aee03395e13808262e7267e7786ee5bb1ae50
6
+ metadata.gz: adf0a264c32ca585d80c26bb63af1ea30a5c5e9b688be6e397bd7df94d2b229cef2c82e74838c940827aa64e87eda786268e24c04c21b16a51c3399c00899648
7
+ data.tar.gz: e089f7470f34696fc6083551dc2fbb5afe65a21b0b9816ab0f4f48a7e3c2257cb61927425905b6238a13afa820d9ca29b543079552b5ff00b64323a7f0876cef
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-codeur (0.9.0)
4
+ rubocop-codeur (0.9.2)
5
5
  rubocop (~> 1.25)
6
6
  rubocop-capybara (~> 2.17)
7
7
  rubocop-minitest (~> 0.20)
@@ -31,7 +31,7 @@ GEM
31
31
  ruby2_keywords
32
32
  i18n (1.14.1)
33
33
  concurrent-ruby (~> 1.0)
34
- json (2.6.3)
34
+ json (2.7.1)
35
35
  language_server-protocol (3.17.0.3)
36
36
  minitest (5.20.0)
37
37
  mutex_m (0.2.0)
@@ -43,9 +43,9 @@ GEM
43
43
  rack (3.0.8)
44
44
  rainbow (3.1.1)
45
45
  rake (13.1.0)
46
- regexp_parser (2.8.2)
46
+ regexp_parser (2.8.3)
47
47
  rexml (3.2.6)
48
- rubocop (1.57.2)
48
+ rubocop (1.58.0)
49
49
  json (~> 2.3)
50
50
  language_server-protocol (>= 3.17.0)
51
51
  parallel (~> 1.10)
@@ -53,7 +53,7 @@ GEM
53
53
  rainbow (>= 2.2.2, < 4.0)
54
54
  regexp_parser (>= 1.8, < 3.0)
55
55
  rexml (>= 3.2.5, < 4.0)
56
- rubocop-ast (>= 1.28.1, < 2.0)
56
+ rubocop-ast (>= 1.30.0, < 2.0)
57
57
  ruby-progressbar (~> 1.7)
58
58
  unicode-display_width (>= 2.4.0, < 3.0)
59
59
  rubocop-ast (1.30.0)
data/default.yml CHANGED
@@ -32,6 +32,12 @@ Codeur/RailsAppPatterns:
32
32
  Codeur/RailsAvoidInstanceMethodsInHelpers:
33
33
  Enabled: false
34
34
 
35
+ Gemspec/RequireMFA:
36
+ Enabled: false
37
+
38
+ Gemspec/RequireRubyVersion:
39
+ Enabled: false
40
+
35
41
  Layout/AccessModifierIndentation:
36
42
  Enabled: true
37
43
  EnforcedStyle: outdent
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Codeur
5
- VERSION = '0.9.0'
5
+ VERSION = '0.9.2'
6
6
  end
7
7
  end
@@ -7,7 +7,7 @@ module RuboCop
7
7
  # RuboCop Codeur project namespace
8
8
  module Codeur
9
9
  class Error < StandardError; end
10
- # Your code goes here...
10
+
11
11
  PROJECT_ROOT = Pathname.new(__dir__).parent.parent.expand_path.freeze
12
12
  CONFIG_DEFAULT = PROJECT_ROOT.join('config', 'default.yml').freeze
13
13
  CONFIG = YAML.safe_load(CONFIG_DEFAULT.read).freeze
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.0
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codeur
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-23 00:00:00.000000000 Z
11
+ date: 2023-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop