-
-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.16 autocorrect of Rails/RootPathnameMethods is unsafe, i.e. breaking code #763
Labels
bug
Something isn't working
Comments
koic
added a commit
to koic/rubocop-rails
that referenced
this issue
Sep 10, 2022
Fixes rubocop#763. This PR fix a false positive for `Rails/RootPathnameMethods` when using `Dir.glob`. And marks unsafe for autocorrection because `Dir`'s methods return string element, but `Pathname`'s methods return `Pathname` element.
9 tasks
I've opened #768, fixed autocorrection logic and marked the cop as unsafe due to the following incompatibility: Dir.glob(Rails.root.join('foo/bar.rb'))
=> ["path/to/foo/bar.rb"]
Rails.root.glob('foo/bar.rb')
=> [#<Pathname:path/to/foo/bar.rb>] |
koic
added a commit
that referenced
this issue
Sep 12, 2022
…ils_root_pathname_methods [Fix #763] Fix a false positive for `Rails/RootPathnameMethods`
Ah, true. It is not even the same 😅 I think marking the autocorrect unsafe is a fair solution. Thanks for addressing this so quickly. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behavior
When rubocop detects a violation of of
Rails/RootPathnameMethods
and autocorrects it, I expect it to keep the behaviour of the code unchanged.Actual behavior
The code breaks, so autocorrection for this cop is not safe in the current version.
Steps to reproduce the problem
I was able to reproduce the problem with the following simple file:
When I run
rails runner foo.rb
it prints a list of files.rubocop foo.rb
reports the offenseNow, using
rubocop -a foo.rb
changes the content of the file towhich is not runnable code anymore and instead raises an error:
foo.rb:2:in 'glob': wrong number of arguments (given 0, expected 1..2) (ArgumentError)
I think what is supposed to happen when autocorrecting is
because this actually seems to be equivalent to the original code and does not violate the
Rails/RootPathnameMethods
cop. But that's not what's happening.RuboCop version
The text was updated successfully, but these errors were encountered: