rubocop-codeur 0.1.7 → 0.1.12

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: 423e4fdec4e6422e6dc81c779ae1fb2763218c2fd9851f94290ff41a9d7d5f87
4
- data.tar.gz: a7409123fea6d3819f035d1c1e7c2c89a82172ff1c9d35e016abe360ff486efd
3
+ metadata.gz: 97c061063d1c0e18fb179eb14c73778d5eab2fcdcf2f0d01a22ae464f6f5eb67
4
+ data.tar.gz: dac96bf993e1e77c377430ec37620d3265dadcbdca8b1560b3a637c435baa51c
5
5
  SHA512:
6
- metadata.gz: 444d646a1439fb4158b33363721b0656bce9e63c8d041d05db0f108ee69b94c38c64b1c955e6dd27605b83de6a387ad42f2b254d3b4039efafa7f39e816dca07
7
- data.tar.gz: 7de9b33053c030ba6e72f9ac1db0d24ac3efcf02d318c2cab2dfd72905160f8c5f41a1ff1aed6968b92574a6b5d4c73e82f7535a01b4a5fd1cfab0afc85cd3ff
6
+ metadata.gz: 7fcb29150d4ef7bc867d07c236bfabb044da3cd2968a2f61c60c040510ffc355e13ddc483ceab8405d63d2098cee276ee6c0991be546a527efdd66a9660c3830
7
+ data.tar.gz: e5741157e6e01c55da9243e6673f733095f6246ede187de4d40d9e2f36a3d06cdd977384bdb3cb3629ceaa8aac10ea4e7393ec016bd21f904f396e240d37cd43
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2020 Codeur SARL
1
+ Copyright 2021 Codeur SARL
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -65,3 +65,6 @@ Else, to publish a new version of this gem, you'll need to build it with
65
65
  ```
66
66
  gem push rubocop-codeur-X.X.X.gem
67
67
  ```
68
+
69
+ ## License
70
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). Copyright 2021 Codeur SARL.
data/default.yml CHANGED
@@ -11,7 +11,9 @@ AllCops:
11
11
  - 'tmp/**/*'
12
12
  - 'vendor/**/*'
13
13
  - 'bin/*'
14
- TargetRubyVersion: 2.6
14
+ - 'test/dummy/db/schema.rb'
15
+ - 'test/dummy/tmp/**/*'
16
+ TargetRubyVersion: 2.7
15
17
  TargetRailsVersion: 6.0
16
18
  NewCops: enable
17
19
 
@@ -64,9 +66,12 @@ Metrics/BlockLength:
64
66
  Exclude:
65
67
  - 'config/routes.rb'
66
68
  - 'lib/tasks/**/*'
69
+ - 'app/states/*'
67
70
 
68
71
  Metrics/ClassLength:
69
72
  Max: 300
73
+ Exclude:
74
+ - 'app/models/**/*'
70
75
 
71
76
  Metrics/CyclomaticComplexity:
72
77
  Max: 10
@@ -112,6 +117,10 @@ Rails/SkipsModelValidations:
112
117
  - 'lib/tasks/**/*'
113
118
  - 'db/migrate/*.rb'
114
119
 
120
+ Rails/TimeZone:
121
+ Enabled: true
122
+ AutoCorrect: false
123
+
115
124
  Rails/UnknownEnv:
116
125
  Environments:
117
126
  - development
@@ -163,3 +172,8 @@ Style/NumericPredicate:
163
172
 
164
173
  Style/SymbolArray:
165
174
  MinSize: 7
175
+
176
+ Style/FormatStringToken:
177
+ Enabled: true
178
+ Exclude:
179
+ - 'config/routes.rb'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubocopCodeur
4
- VERSION = '0.1.7'
4
+ VERSION = '0.1.12'
5
5
  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.1.7
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dev-team Codeur
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-11 00:00:00.000000000 Z
11
+ date: 2021-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -101,7 +101,7 @@ licenses:
101
101
  - MIT
102
102
  metadata:
103
103
  homepage_uri: https://github.com/codeur/rubocop-codeur
104
- post_install_message:
104
+ post_install_message:
105
105
  rdoc_options: []
106
106
  require_paths:
107
107
  - lib
@@ -116,8 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  requirements: []
119
- rubygems_version: 3.0.3
120
- signing_key:
119
+ rubygems_version: 3.1.4
120
+ signing_key:
121
121
  specification_version: 4
122
122
  summary: Codeur rubocop config gem
123
123
  test_files: []