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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2442fc13df0e1739fca114a7ae7c5e75aaf4da5b87030ce79e6f32389bbc3429
4
- data.tar.gz: 689d1ef8087f6049eeb8809950882d14d853069308e7dca1b36e2319d4f4a9c0
3
+ metadata.gz: 20c867fe158c76395fec3a74823311eb549b37201a8f0c753289084f4d808f7e
4
+ data.tar.gz: b4e69e4b9db169d4c1cdd63377f381521d7cae078485a4bb18acea2dee64eeed
5
5
  SHA512:
6
- metadata.gz: f950dbce1e53df2ab4f3d5187470a1f5fd46c59c6ba912791c58beee59934db1a530b95a8e7107d30566bec2d60cbe753e52f13f392aae45e8c10679ba095bb7
7
- data.tar.gz: 79bf02c3946d91d3bbaf5f336ebabe043df4be98db358373caa43fdeeb0dd7dcf900fb411332663f7bb52aa1bcef8903cfe23f06186af06093cc78e0166e99f9
6
+ metadata.gz: 92cce33530cd0da7b54ba7def7b4d09f12d1e881a64afecfa523a59643c3e6b2dc9f4b9d0fab25aa55b4e8fc613d81fd4f1b6e2e651fcab0c965f73015f01fc5
7
+ data.tar.gz: 515361ba18708634a022de668eb5ab2b50bfe23273ec84234db0219f08087432d1d76f91a65e2fe571a7a5db36248eab24469a6189e5cb377c3688eed00efe8f
data/.rubocop.yml CHANGED
@@ -7,3 +7,7 @@ Metrics/LineLength:
7
7
  Naming/FileName:
8
8
  Exclude:
9
9
  - rubocop-ogat.gemspec
10
+
11
+ Metrics/BlockLength:
12
+ Exclude:
13
+ - rubocop-ogat.gemspec
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
- - module_inclusion
48
- - constants
49
- - attributes
50
- - associations
51
- - validations
52
- - hooks
53
- - public_class_methods
54
- - initializer
55
- - public_methods
56
- - protected_methods
57
- - private_methods
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'
@@ -3,7 +3,7 @@
3
3
  module Rubocop
4
4
  # Define version info for the gem
5
5
  module Ogat
6
- VERSION = '1.49.2'
6
+ VERSION = '1.50.0'
7
7
  public_constant :VERSION
8
8
  end
9
9
  end
data/rubocop-ogat.gemspec CHANGED
@@ -33,4 +33,5 @@ Gem::Specification.new do |spec|
33
33
  spec.add_runtime_dependency 'rubocop-performance', '1.5.2'
34
34
  spec.add_runtime_dependency 'rubocop-rails', '2.5.2'
35
35
  spec.add_runtime_dependency 'rubocop-rspec', '1.38.1'
36
+ spec.add_runtime_dependency 'test-prof', '0.11.3'
36
37
  end
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.49.2
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-09 00:00:00.000000000 Z
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