We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add a new code action to move the selected method implementation to the parent class. For example:
# BEFORE class Parent end class Child < Parent def foo end end # AFTER class Parent def foo end end class Child < Parent end
Here's an example PR adding a refactor end to end #2372.