This issue is a (choose one):
Checklist before submitting:
Description
Bug reports:
When I add the gem to my Gemfile in may Rails 6 App, I'm getting the following deprecation warning:
ActiveSupport::DeprecationException: DEPRECATION WARNING: Initialization autoloaded the constants ActionText::ContentHelper and ActionText::TagHelper.
Being able to do this is deprecated. Autoloading during initialization is going
to be an error condition in future versions of Rails.
Reloading does not reboot the application, and therefore code executed during
initialization does not run again. So, if you reload ActionText::ContentHelper, for example,
the expected changes won't be reflected in that stale Module object.
These autoloaded constants have been unloaded.
Please, check the "Autoloading and Reloading Constants" guide for solutions.
The text is a bit misleading, but the issue is definitely coming from this gem. You can see this issue here: rails/rails#36546 that the error has nothing to do with ActionText.
If I remove the gem, the warning disappears.
This issue is a (choose one):
Checklist before submitting:
Description
Bug reports:
When I add the gem to my
Gemfilein may Rails 6 App, I'm getting the following deprecation warning:The text is a bit misleading, but the issue is definitely coming from this gem. You can see this issue here: rails/rails#36546 that the error has nothing to do with ActionText.
If I remove the gem, the warning disappears.