This gem was built to gemify the assets used in Summernote, the Super Simple WYSIWYG Editor on Bootstrap, for Ruby on Rails version >= 3.1.
If you want to get the detailed information on how to use summernote editor, please click URL link to the website of Summernote.
https://github.com/hackerwins/summernote.
The version of summernote-rails is matched with that of summernote editor.
Add the following gems to your application's Gemfile:
# for Rails 4.0.x
gem 'simple_form'
# for Rails 3.2.x
gem 'simple_form'
# You'll need to include the following dependencies of Summernote
gem 'bootstrap-sass'
gem 'font-awesome-sass'
# This is the right gem to use summernote editor in Rails projects.
gem 'summernote-rails'
And then execute:
$ bundle
First of all, the summernote editor works on Bootstrap and so it is assumed that you have already set it up.
In app/assets/stylesheets/bootstrap_and_override.css.scss,
// You can insert the following two code lines if you are using Bootstrap 2
$iconSpritePath: '';
$iconWhiteSpritePath: '';
@import 'bootstrap';
body {padding-top:3em;}
// You can delete the follow code line if you are using Bootstrap 3
@import 'bootstrap-responsive';
In app/assets/javascripts/application.js, you should add the following:
//= require summernote.min
or
//= require summernote # if you want to require the uncompressed one
//= require lang/summernot-kr-KR # if you need to use i18n support
And also, in app/assets/stylesheets/application.css, you should add the following:
*= require font-awesome
*= require summernote
For example, if you made a Post
model using scaffold generator
of Rails, you would see the post
form view template in app/views/posts/_form.html.erb.
In that template file, you should add summernote
class to the textarea input as the following:
<%= simple_form_for(@post) do |f| %>
<%= f.error_notification %>
<div class="form-group">
<%= f.input :title, input_html:{class:'form-control'} %>
</div>
<div class="form-group">
<%= f.input :content, class:'summernote' %>
</div>
<div class="form-group">
<%= f.button :submit, class:'btn btn-default' %>
</div>
<% end %>
And then, in post
-dedicated coffeescript file, app/assets/javascripts/posts.js.coffee, you should add the following:
$ ->
# to set summernote object
# You should change '#post_content' to your textarea input id
summer_note = $('#post_content')
# to call summernote editor
summer_note.summernote
# to set options
height:300
lang: 'ko-KR'
# toolbar: [
# ['insert', ['picture', 'link']], // no insert buttons
# ["table", ["table"]],
# ["style", ["style"]],
# ["fontsize", ["fontsize"]],
# ["color", ["color"]],
# ["style", ["bold", "italic", "underline", "clear"]],
# ["para", ["ul", "ol", "paragraph"]],
# ["height", ["height"]],
# ["help", ["help"]]
#]
# to set code for summernote
summer_note.code summer_note.val()
# to get code for summernote
summer_note.closest('form').submit ->
# alert $('#post_content').code()
summer_note.val summer_note.code()
true
That's it.
- Rails 3.2.16 : http://github.com/rorlab/summernote-test-r3
- Rails 4.0.2 : http://github.com/rorlab/summernote-test
-
v0.5.0 : Support i18n
- Updated with
v0.5 Summernote, 2013-12-29
as the followings:- Support both Font-Awesome 3.x and 4.x
- CodeMirror as Codeview
- Insert Video (by cdownie)
- Support 5 Languages(by hendrismit, tschiela, inomies, cverond)
- Restructuring: jQuery build pattern
- Updated with
-
v0.4.0 : Support both Bootstrap 3.0 and 2.x
- Updated with
v0.4 Summernote, 2013-11-01
as the followings: - View mode
- Fullscreen
- Code view
- Image upload callback
- Updated with
-
v0.3.0 : Added the resizing bar at the bottom of editor.
- Updated with
v0.3 Summernote, 2013-09-01
as the followings:FIXED
bugs(image upload, fontsize, tab, recent color, ...)ADDED
help dialog(keyboard shortcut)ADDED
init options(event callbacks, custom toolbar)ADDED
resize barADDED
support IE8 Beta(some range bugs, can't insert Image)
- Updated with
-
v0.2.1.4 : Enable to customize Toolbar Collection
-
v0.2.1.3 : Added Help button in editor toolbox to popup Hot Key Table
-
v0.2.1.2 : Added InsertHorizontalRule(Cmd+Enter) in summernote editor / Added summernote.js
-
v0.2.1.1 : Available for Rails >= 3.1
-
v0.2.1 : Bugfixed file uploading
-
v0.2.0 : Available for Rails v4.0
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request