Skip to content

Instantly share code, notes, and snippets.

@zapad7715
Created July 31, 2018 07:00
Show Gist options
  • Save zapad7715/7fa42771011fc455841553d41d2cedf2 to your computer and use it in GitHub Desktop.
Save zapad7715/7fa42771011fc455841553d41d2cedf2 to your computer and use it in GitHub Desktop.
Установка CKeditor в ActiveAdmin
1. Gemfile
gem 'ckeditor', github: 'galetahub/ckeditor'
2. bundle install
3. app/assets/javascripts/application.js
//= require ckeditor/init
4. config/initializers/active_admin.rb
config.register_javascript 'ckeditor/init.js'
5. Usage with Active Admin:
app/admin/model.rb
form do |f|
f.input :description, as: :ckeditor
end
Links:
https://github.com/galetahub/ckeditor
https://github.com/activeadmin/activeadmin/wiki/Ckeditor-integration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment