rubocop-obsession 0.1.15 → 0.2.1
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/README.md +7 -4
- data/config/default.yml +2 -1
- data/lib/rubocop/cop/obsession/method_order.rb +69 -36
- data/lib/rubocop/cop/obsession/rspec/empty_line_after_final_let.rb +5 -0
- data/lib/rubocop/obsession/plugin.rb +31 -0
- data/lib/rubocop/obsession/version.rb +1 -1
- data/lib/rubocop/obsession.rb +1 -2
- metadata +20 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7885cd6051ff7ba71d477540ef6a96816104474779712889731a368b498f2355
|
4
|
+
data.tar.gz: 46889611aad04c7b60eb400303609c5b69b224c4be61f4f5e229e1a311a39042
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cf639565795d539c9c1255d4c0eb0fb6a661cf3d73fce9bd0ac0dd37a9dfb975d7fbcdcd027fdcefeef86f2707b9f096efd97420f3ca9289a37344994a58608
|
7
|
+
data.tar.gz: 18d04703b8f0b46798f2e512b9e1a8750308a34816ee18590e72e471288d6d13654a0f9732a4cf566a45f0b5bf43dcec30e396f4b509f4495cf736e82678a844
|
data/README.md
CHANGED
@@ -38,13 +38,13 @@ to do this:
|
|
38
38
|
Put this into your `.rubocop.yml`.
|
39
39
|
|
40
40
|
```yaml
|
41
|
-
|
41
|
+
plugins: rubocop-obsession
|
42
42
|
```
|
43
43
|
|
44
44
|
Alternatively, use the following array notation when specifying multiple extensions.
|
45
45
|
|
46
46
|
```yaml
|
47
|
-
|
47
|
+
plugins:
|
48
48
|
- rubocop-other-extension
|
49
49
|
- rubocop-obsession
|
50
50
|
```
|
@@ -52,17 +52,20 @@ require:
|
|
52
52
|
Now you can run `rubocop` and it will automatically load the Rubocop Obsession
|
53
53
|
cops together with the standard cops.
|
54
54
|
|
55
|
+
> [!NOTE]
|
56
|
+
> The plugin system is supported in RuboCop 1.72+. In earlier versions, use `require` instead of `plugins`.
|
57
|
+
|
55
58
|
### Command line
|
56
59
|
|
57
60
|
```bash
|
58
|
-
rubocop --
|
61
|
+
rubocop --plugin rubocop-obsession
|
59
62
|
```
|
60
63
|
|
61
64
|
### Rake task
|
62
65
|
|
63
66
|
```ruby
|
64
67
|
RuboCop::RakeTask.new do |task|
|
65
|
-
task.
|
68
|
+
task.plugins << 'rubocop-obsession'
|
66
69
|
end
|
67
70
|
```
|
68
71
|
|
data/config/default.yml
CHANGED
@@ -4,6 +4,7 @@ Obsession/MethodOrder:
|
|
4
4
|
SupportedStyles:
|
5
5
|
- drill_down
|
6
6
|
- step_down
|
7
|
+
- alphabetical
|
7
8
|
Obsession/NoBreakOrNext:
|
8
9
|
Enabled: false
|
9
10
|
Exclude:
|
@@ -31,7 +32,7 @@ Obsession/Rspec/DescribePublicMethod:
|
|
31
32
|
Enabled: true
|
32
33
|
Include:
|
33
34
|
- 'spec/**/*_spec.rb'
|
34
|
-
#
|
35
|
+
# This can be uncommented if you have rubocop-rspec as a gem dependency.
|
35
36
|
# Obsession/Rspec/EmptyLineAfterFinalLet:
|
36
37
|
# Enabled: true
|
37
38
|
# Include:
|
@@ -6,30 +6,27 @@ module RuboCop
|
|
6
6
|
# This cop checks for private/protected methods that are not ordered
|
7
7
|
# correctly. It supports autocorrect.
|
8
8
|
#
|
9
|
-
#
|
10
|
-
# follow that rule.
|
11
|
-
#
|
12
|
-
# Note 1: public methods do not have to follow that rule, and can be
|
9
|
+
# Note 1: the order of public methods is not enforced. They can be
|
13
10
|
# defined in any order the developer wants, like by order of importance.
|
14
|
-
# This is because
|
15
|
-
# not called within the class at all. If possible though,
|
16
|
-
# should still try to order their public methods
|
17
|
-
#
|
11
|
+
# This is because public methods are usually called outside of the class
|
12
|
+
# and often not called within the class at all. If possible though,
|
13
|
+
# developers should still try to order their public methods when it makes
|
14
|
+
# sense.
|
18
15
|
#
|
19
|
-
# Note 2: method order cannot be computed for
|
20
|
-
# metaprogramming, private methods called by
|
21
|
-
# etc. This cop's suggestions and
|
22
|
-
# these cases.
|
16
|
+
# Note 2: for top to bottom styles, method order cannot be computed for
|
17
|
+
# methods called by `send`, metaprogramming, private methods called by
|
18
|
+
# superclasses or modules, etc. This cop's suggestions and
|
19
|
+
# autocorrections may be slightly off for these cases.
|
23
20
|
#
|
24
|
-
# Note 3: for simplicity, protected methods do not have to
|
25
|
-
#
|
21
|
+
# Note 3: for simplicity, protected methods do not have to be ordered if
|
22
|
+
# there are both a protected section and a private section.
|
26
23
|
#
|
27
24
|
# @example EnforcedStyle: drill_down (default)
|
28
|
-
# In this style,
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
25
|
+
# In this style, code should read from top to bottom. More
|
26
|
+
# particularly, methods should be defined in the same order as the
|
27
|
+
# order when they are first mentioned. Put another way, you go to the
|
28
|
+
# bottom of the method call tree before going back up. See examples
|
29
|
+
# below.
|
33
30
|
#
|
34
31
|
# This style is similar to the code example provided in the "Reading
|
35
32
|
# Code from Top to Bottom: The Stepdown Rule" chapter from Robert C.
|
@@ -95,9 +92,10 @@ module RuboCop
|
|
95
92
|
# end
|
96
93
|
#
|
97
94
|
# @example EnforcedStyle: step_down
|
98
|
-
# In this style,
|
99
|
-
#
|
100
|
-
#
|
95
|
+
# In this style, code should read from top to bottom. More
|
96
|
+
# particularly, common called methods (which tend to have a lower level
|
97
|
+
# of abstraction) are defined after the group of methods that calls
|
98
|
+
# them (these caller methods tend to have a higher level of
|
101
99
|
# abstraction). The idea is to gradually descend one level of
|
102
100
|
# abstraction at a time.
|
103
101
|
#
|
@@ -132,6 +130,32 @@ module RuboCop
|
|
132
130
|
# def method_b; method_c; end
|
133
131
|
# def method_c; ...; end
|
134
132
|
# end
|
133
|
+
#
|
134
|
+
# @example EnforcedStyle: alphabetical
|
135
|
+
# In this style, methods are ordered alphabetically. This style is
|
136
|
+
# unambiguous and interpretation-free.
|
137
|
+
#
|
138
|
+
# # bad
|
139
|
+
# class Foo
|
140
|
+
# def perform; ...; end
|
141
|
+
#
|
142
|
+
# private
|
143
|
+
#
|
144
|
+
# def method_c; ...; end
|
145
|
+
# def method_b; ...; end
|
146
|
+
# def method_a; ...; end
|
147
|
+
# end
|
148
|
+
#
|
149
|
+
# # good
|
150
|
+
# class Foo
|
151
|
+
# def perform; ...; end
|
152
|
+
#
|
153
|
+
# private
|
154
|
+
#
|
155
|
+
# def method_a; ...; end
|
156
|
+
# def method_b; ...; end
|
157
|
+
# def method_c; ...; end
|
158
|
+
# end
|
135
159
|
class MethodOrder < Base
|
136
160
|
include ConfigurableEnforcedStyle
|
137
161
|
include Helpers
|
@@ -166,9 +190,7 @@ module RuboCop
|
|
166
190
|
@class_node = class_node
|
167
191
|
find_private_node || return
|
168
192
|
build_methods || return
|
169
|
-
build_callback_methods
|
170
193
|
|
171
|
-
build_method_call_tree
|
172
194
|
build_ordered_private_methods
|
173
195
|
build_private_methods
|
174
196
|
|
@@ -209,6 +231,25 @@ module RuboCop
|
|
209
231
|
@methods.any?
|
210
232
|
end
|
211
233
|
|
234
|
+
def build_ordered_private_methods
|
235
|
+
if style == :alphabetical
|
236
|
+
@ordered_private_methods = alphabetically_ordered_private_methods
|
237
|
+
else
|
238
|
+
build_callback_methods
|
239
|
+
build_method_call_tree
|
240
|
+
@ordered_private_methods = top_to_bottom_ordered_private_methods(@method_call_tree)
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
def alphabetically_ordered_private_methods
|
245
|
+
@methods
|
246
|
+
.values
|
247
|
+
.uniq
|
248
|
+
.reject { |method| ignore_visibility?(node_visibility(method)) }
|
249
|
+
.map(&:method_name)
|
250
|
+
.sort
|
251
|
+
end
|
252
|
+
|
212
253
|
def build_callback_methods
|
213
254
|
@callback_methods = []
|
214
255
|
|
@@ -252,18 +293,14 @@ module RuboCop
|
|
252
293
|
called_methods
|
253
294
|
end
|
254
295
|
|
255
|
-
def
|
256
|
-
@ordered_private_methods = ordered_private_methods(@method_call_tree)
|
257
|
-
end
|
258
|
-
|
259
|
-
def ordered_private_methods(node)
|
296
|
+
def top_to_bottom_ordered_private_methods(node)
|
260
297
|
ast_node = node.value
|
261
298
|
method_name = should_ignore?(ast_node) ? nil : ast_node.method_name
|
262
|
-
next_names =
|
299
|
+
next_names =
|
300
|
+
node.children.flat_map { |child| top_to_bottom_ordered_private_methods(child) }
|
263
301
|
|
264
302
|
common_methods =
|
265
|
-
|
266
|
-
|
303
|
+
(style == :drill_down) ? [] : next_names.tally.select { |_, size| size > 1 }.keys
|
267
304
|
unique_methods = next_names - common_methods
|
268
305
|
|
269
306
|
([method_name] + unique_methods + common_methods).compact.uniq
|
@@ -274,10 +311,6 @@ module RuboCop
|
|
274
311
|
!@called_methods.include?(ast_node)
|
275
312
|
end
|
276
313
|
|
277
|
-
def drill_down_style?
|
278
|
-
style == :drill_down
|
279
|
-
end
|
280
|
-
|
281
314
|
def build_private_methods
|
282
315
|
@private_methods = @methods.keys.intersection(@ordered_private_methods)
|
283
316
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'lint_roller'
|
4
|
+
|
5
|
+
module Rubocop
|
6
|
+
module Obsession
|
7
|
+
# A plugin that integrates Rubocop Obsession with RuboCop's plugin system.
|
8
|
+
class Plugin < LintRoller::Plugin
|
9
|
+
def about
|
10
|
+
LintRoller::About.new(
|
11
|
+
name: 'rubocop-obsession',
|
12
|
+
version: VERSION,
|
13
|
+
homepage: 'https://github.com/jeromedalbert/rubocop-obsession',
|
14
|
+
description: 'A collection of RuboCop cops for enforcing higher-level code concepts.'
|
15
|
+
)
|
16
|
+
end
|
17
|
+
|
18
|
+
def supported?(context)
|
19
|
+
context.engine == :rubocop
|
20
|
+
end
|
21
|
+
|
22
|
+
def rules(_context)
|
23
|
+
LintRoller::Rules.new(
|
24
|
+
type: :path,
|
25
|
+
config_format: :rubocop,
|
26
|
+
value: Pathname.new(__dir__).join('../../../config/default.yml')
|
27
|
+
)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/lib/rubocop/obsession.rb
CHANGED
@@ -6,5 +6,4 @@ require 'rubocop'
|
|
6
6
|
require_relative 'cop/obsession/mixin/helpers'
|
7
7
|
Dir["#{__dir__}/cop/obsession/**/*.rb"].sort.each { |file| require file }
|
8
8
|
require_relative 'obsession/version'
|
9
|
-
|
10
|
-
RuboCop::ConfigLoader.inject_defaults!("#{__dir__}/../..")
|
9
|
+
require_relative 'obsession/plugin'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-obsession
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jerome Dalbert
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -24,20 +24,34 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: lint_roller
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.1'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: rubocop
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - "~>"
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version: '1.
|
47
|
+
version: '1.72'
|
34
48
|
type: :runtime
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - "~>"
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version: '1.
|
54
|
+
version: '1.72'
|
41
55
|
description: A collection of RuboCop cops for enforcing higher-level code concepts.
|
42
56
|
email:
|
43
57
|
- jerome.dalbert@gmail.com
|
@@ -71,6 +85,7 @@ files:
|
|
71
85
|
- lib/rubocop/cop/obsession/rspec/empty_line_after_final_let.rb
|
72
86
|
- lib/rubocop/cop/obsession/too_many_paragraphs.rb
|
73
87
|
- lib/rubocop/obsession.rb
|
88
|
+
- lib/rubocop/obsession/plugin.rb
|
74
89
|
- lib/rubocop/obsession/version.rb
|
75
90
|
homepage: https://github.com/jeromedalbert/rubocop-obsession
|
76
91
|
licenses:
|
@@ -78,6 +93,7 @@ licenses:
|
|
78
93
|
metadata:
|
79
94
|
homepage_uri: https://github.com/jeromedalbert/rubocop-obsession
|
80
95
|
source_code_uri: https://github.com/jeromedalbert/rubocop-obsession
|
96
|
+
default_lint_roller_plugin: Rubocop::Obsession::Plugin
|
81
97
|
post_install_message:
|
82
98
|
rdoc_options: []
|
83
99
|
require_paths:
|