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
Hi,
This https://github.com/weppos/tabs_on_rails/blob/master/lib/tabs_on_rails/railtie.rb#L14 is causing the following warning in Rails 6 app.
DEPRECATION WARNING: Initialization autoloaded the constants ActionText::ContentHelper and ActionText::TagHelper.
Should use :prepend instead of :include. Here is an example of a potential fix https://github.com/mileszs/wicked_pdf/pull/869/files#diff-ea9340aeb7bd0bcc5782373373980c56R10-R15
:prepend
:include
I used the following snippet to track it down rails/rails#36546 (comment)
Let me know if you need anything else. Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
This
https://github.com/weppos/tabs_on_rails/blob/master/lib/tabs_on_rails/railtie.rb#L14
is causing the following warning in Rails 6 app.
DEPRECATION WARNING: Initialization autoloaded the constants ActionText::ContentHelper and ActionText::TagHelper.
Should use
:prepend
instead of:include
.Here is an example of a potential fix
https://github.com/mileszs/wicked_pdf/pull/869/files#diff-ea9340aeb7bd0bcc5782373373980c56R10-R15
I used the following snippet to track it down
rails/rails#36546 (comment)
Let me know if you need anything else. Thanks
The text was updated successfully, but these errors were encountered: