You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I started having an issue with some missing methods right after I upgraded the gem to its 4.4.0 version (in a Rails 5.2.2.1 don't think that's relevant, though) from 4.2.0.
After upgrading the gem, I started getting this error:
[APP_ROOT_PATH]/config/initializers/ckeditor.rb:2:in `block in <main>': undefined method `assets_languages=' for Ckeditor:Module
Did you mean? asset_path= (NoMethodError)
from [GEM_ROOT_PATH]/ckeditor-4.4.0/lib/ckeditor.rb:108:in `setup'
from [APP_ROOT_PATH]/config/initializers/ckeditor.rb:1:in `<main>'
[...lengthy backtrace...]
which clearly indicates that there is no such method asset_languages= (nor assets_plugins=, already checked) in the Ckkeditor module.
Digging around, I found that the mattr_accessors that generated these methods have been removed in 36a6fcb, but I can't seem to find any reasons for the removal or how can we should specify those options now.
I apologize in advance if I'm missing something that's already documented somewhere, but I'm not finding any info regarding this API change.
Thanks for your time!
Cheers,
Nahuel.
The text was updated successfully, but these errors were encountered:
Hi, I started having an issue with some missing methods right after I upgraded the gem to its
4.4.0
version (in aRails 5.2.2.1
don't think that's relevant, though) from4.2.0
.I have this initializer:
After upgrading the gem, I started getting this error:
which clearly indicates that there is no such method
asset_languages=
(norassets_plugins=
, already checked) in theCkkeditor
module.Digging around, I found that the
mattr_accessor
s that generated these methods have been removed in 36a6fcb, but I can't seem to find any reasons for the removal or how can we should specify those options now.I apologize in advance if I'm missing something that's already documented somewhere, but I'm not finding any info regarding this API change.
Thanks for your time!
Cheers,
Nahuel.
The text was updated successfully, but these errors were encountered: