We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
private
Given this code:
class FoosController < ApplicationController private helper_method \ def my_helper 'help me!' end end
Robocop warns that the private is useless. But #my_helper is indeed private.
#my_helper
The text was updated successfully, but these errors were encountered:
Just pushed a fix to my open PR.
Sorry, something went wrong.
a83df51
No branches or pull requests
Given this code:
Robocop warns that the
private
is useless. But#my_helper
is indeed private.The text was updated successfully, but these errors were encountered: