rubocop-obsession 0.1.15 → 0.2.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: be68e2beb303a311848858498767c76c03cc98031d8716bc27a702c3e2d0bb01
4
- data.tar.gz: 0e867c196f843e6c206794e9938e0e88a779b8b231f51b43f4aeed02d6331efa
3
+ metadata.gz: 25c282866d6263936f722452957de83f65e35a9bd8be749b0776db3804735c99
4
+ data.tar.gz: dd25cf5b7c1ea78fa15160cd035d0bbb0a46c97358d5c71c5290f7ee44d97604
5
5
  SHA512:
6
- metadata.gz: dfa035279001455509c1a4ee73d1aeae9e418733471691270c0c9627371f3ebd24415db377985ca6ff1f583e9843a65712be9ff9d640cc60643b2197b12f3e51
7
- data.tar.gz: 90a7ed2c98377e3367ac0a177629c8e83a19b56cc294ddbadd260a3d67ce941a95b26f626401904078753822a00ae17babbb95f1c88bd6c128646917423c5908
6
+ metadata.gz: ec4f1c02a081f43198c0df82f8bc0676ffe7edc1abe6400082e0338f2aae9a83e2d77bafb5afa654d9d242af46116b2e230a8a00730cdb188fa6941a63a5d48c
7
+ data.tar.gz: 4276856a5304191f68345fc9527d9b2a5432ac8f78811803098f21a65863d08c5ca51d1053be59b72877e9ee6749477f11bd691708ec136d8998cb6745109021
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
- require: rubocop-obsession
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
- require:
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 --require rubocop-obsession
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.requires << 'rubocop-obsession'
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:
@@ -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
- # Code should read from top to bottom. Private/protected methods should
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 they are usually called outside of the class and often
15
- # not called within the class at all. If possible though, developers
16
- # should still try to order their public methods from top to bottom when
17
- # it makes sense.
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 methods called by `send`,
20
- # metaprogramming, private methods called by superclasses or modules,
21
- # etc. This cop's suggestions and autocorrections may be slightly off for
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 follow that
25
- # rule if there are both a protected section and a private section.
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, methods should be defined in the same order as the
29
- # order when they are first mentioned. This means that a called method
30
- # is defined below the caller method as immediately as possible. In
31
- # other words, you go to the bottom of the method call tree before
32
- # going back up. See the second example.
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, common called methods (which tend to have a lower
99
- # level of abstraction) are defined after the group of methods that
100
- # calls them (these caller methods tend to have a higher level of
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 build_ordered_private_methods
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 = node.children.flat_map { |child| ordered_private_methods(child) }
299
+ next_names =
300
+ node.children.flat_map { |child| top_to_bottom_ordered_private_methods(child) }
263
301
 
264
302
  common_methods =
265
- drill_down_style? ? [] : next_names.tally.select { |_, size| size > 1 }.keys
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
@@ -1,5 +1,5 @@
1
1
  module Rubocop
2
2
  module Obsession
3
- VERSION = '0.1.15'
3
+ VERSION = '0.2.0'
4
4
  end
5
5
  end
@@ -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.15
4
+ version: 0.2.0
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-02-25 00:00:00.000000000 Z
11
+ date: 2025-03-23 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.41'
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.41'
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: