rails - how to unistall ckeditor from rails -
first installed ckeditor, found simple text editor , want remove ckeditor. there word on how it.
of course, can remove gem gemfile , run bundle
, how can removed ckeditor files?
you have inserted application.js , application.css file - remove require ckeditor stuff.
then remove gemfile. run:
bundle exec gem uninstall gem_name
also if have assets precompiled run:
rake assets:clean assets:precompile rails_env=production
to remove public js , css files.
if still encounter ckeditor files in public assets folder run:
rake assets:clobber , compile again.
Comments
Post a Comment