8000
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 8FF3 .
Already on GitHub? Sign in to your account
erector/lib/erector/rails3.rb
Lines 145 to 147 in 5975421
def respond_to?(name, include_private = false) super || helpers.respond_to?(name, include_private) end
Avoids using deprecated syntax (you are supposed to be explicit now)
<your method call> uses the deprecated method signature, which takes one parameter
Not sure what you want the default to be, but not adding a default could be a breaking change for some applications.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
erector/lib/erector/rails3.rb
Lines 145 to 147 in 5975421
Avoids using deprecated syntax (you are supposed to be explicit now)
Not sure what you want the default to be, but not adding a default could be a breaking change for some applications.
The text was updated successfully, but these errors were encountered: