forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rubocop#390 from koic/import_enforce_superclass_mo…
…dule Import `EnforceSuperclass` module
- Loading branch information
Showing
6 changed files
with
50 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# frozen_string_literal: true | ||
|
||
module RuboCop | ||
module Cop | ||
# Common functionality for enforcing a specific superclass. | ||
module EnforceSuperclass | ||
def self.included(base) | ||
base.def_node_matcher :class_definition, <<~PATTERN | ||
(class (const _ !:#{base::SUPERCLASS}) #{base::BASE_PATTERN} ...) | ||
PATTERN | ||
|
||
base.def_node_matcher :class_new_definition, <<~PATTERN | ||
[!^(casgn {nil? cbase} :#{base::SUPERCLASS} ...) | ||
!^^(casgn {nil? cbase} :#{base::SUPERCLASS} (block ...)) | ||
(send (const {nil? cbase} :Class) :new #{base::BASE_PATTERN})] | ||
PATTERN | ||
end | ||
|
||
def on_class(node) | ||
class_definition(node) do | ||
register_offense(node.children[1]) | ||
end | ||
end | ||
|
||
def on_send(node) | ||
class_new_definition(node) do | ||
register_offense(node.children.last) | ||
end | ||
end | ||
|
||
private | ||
|
||
def register_offense(offense_node) | ||
add_offense(offense_node) do |corrector| | ||
corrector.replace(offense_node.source_range, self.class::SUPERCLASS) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters