rubocop-ogat 1.49.2 → 1.50.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/.rubocop.yml +4 -0
- data/config/default.yml +23 -14
- data/lib/rubocop/ogat/version.rb +1 -1
- data/rubocop-ogat.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20c867fe158c76395fec3a74823311eb549b37201a8f0c753289084f4d808f7e
|
|
4
|
+
data.tar.gz: b4e69e4b9db169d4c1cdd63377f381521d7cae078485a4bb18acea2dee64eeed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92cce33530cd0da7b54ba7def7b4d09f12d1e881a64afecfa523a59643c3e6b2dc9f4b9d0fab25aa55b4e8fc613d81fd4f1b6e2e651fcab0c965f73015f01fc5
|
|
7
|
+
data.tar.gz: 515361ba18708634a022de668eb5ab2b50bfe23273ec84234db0219f08087432d1d76f91a65e2fe571a7a5db36248eab24469a6189e5cb377c3688eed00efe8f
|
data/.rubocop.yml
CHANGED
data/config/default.yml
CHANGED
|
@@ -2,6 +2,7 @@ require:
|
|
|
2
2
|
- rubocop-performance
|
|
3
3
|
- rubocop-rspec
|
|
4
4
|
- rubocop-rails
|
|
5
|
+
- 'test_prof/rubocop'
|
|
5
6
|
|
|
6
7
|
AllCops:
|
|
7
8
|
EnabledByDefault: true
|
|
@@ -44,17 +45,17 @@ Layout/ClassStructure:
|
|
|
44
45
|
- after_create
|
|
45
46
|
- after_initialize
|
|
46
47
|
ExpectedOrder:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
48
|
+
- module_inclusion
|
|
49
|
+
- constants
|
|
50
|
+
- attributes
|
|
51
|
+
- associations
|
|
52
|
+
- validations
|
|
53
|
+
- hooks
|
|
54
|
+
- public_class_methods
|
|
55
|
+
- initializer
|
|
56
|
+
- public_methods
|
|
57
|
+
- protected_methods
|
|
58
|
+
- private_methods
|
|
58
59
|
|
|
59
60
|
Layout/LineLength:
|
|
60
61
|
AutoCorrect: true
|
|
@@ -86,7 +87,7 @@ Metrics/BlockLength:
|
|
|
86
87
|
- 'config/routes.rb'
|
|
87
88
|
- 'db/migrate/**/*'
|
|
88
89
|
- 'spec/**/*.rb'
|
|
89
|
-
|
|
90
|
+
|
|
90
91
|
Metrics/MethodLength:
|
|
91
92
|
Exclude:
|
|
92
93
|
- 'db/migrate/**/*'
|
|
@@ -147,10 +148,18 @@ RSpec/LetSetup:
|
|
|
147
148
|
|
|
148
149
|
RSpec/NestedGroups:
|
|
149
150
|
Enabled: false
|
|
150
|
-
|
|
151
|
+
|
|
151
152
|
RSpec/ExampleLength:
|
|
152
153
|
Enabled: false
|
|
153
|
-
|
|
154
|
+
|
|
154
155
|
RSpec/MultipleExpectations:
|
|
155
156
|
Exclude:
|
|
156
157
|
- spec/system/**/*
|
|
158
|
+
|
|
159
|
+
RSpec/AggregateFailures:
|
|
160
|
+
Enabled: false
|
|
161
|
+
|
|
162
|
+
RSpec/AggregateExamples:
|
|
163
|
+
Enabled: true
|
|
164
|
+
Include:
|
|
165
|
+
- 'spec/**/*.rb'
|
data/lib/rubocop/ogat/version.rb
CHANGED
data/rubocop-ogat.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-ogat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.50.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elliot Bowes
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-04-
|
|
12
|
+
date: 2020-04-14 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -165,6 +165,20 @@ dependencies:
|
|
|
165
165
|
- - '='
|
|
166
166
|
- !ruby/object:Gem::Version
|
|
167
167
|
version: 1.38.1
|
|
168
|
+
- !ruby/object:Gem::Dependency
|
|
169
|
+
name: test-prof
|
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
|
171
|
+
requirements:
|
|
172
|
+
- - '='
|
|
173
|
+
- !ruby/object:Gem::Version
|
|
174
|
+
version: 0.11.3
|
|
175
|
+
type: :runtime
|
|
176
|
+
prerelease: false
|
|
177
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
178
|
+
requirements:
|
|
179
|
+
- - '='
|
|
180
|
+
- !ruby/object:Gem::Version
|
|
181
|
+
version: 0.11.3
|
|
168
182
|
description:
|
|
169
183
|
email:
|
|
170
184
|
- webmaster@outwood.com
|