Repository is archived
No commit activity in last 3 years
No release in over 3 years
You could use quill editor in rails via importing quill in application.js directly
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

Quill Editor Rails

Gem Version

This gem adds a lastest version of Quill Rich Text Editor to Rails. The gem only includes quill.min.js, quill.bubble.scss and quill.snow.scss. You can also use alternative gems like quilljs-rails or quill-rails5 if you need view_helper or something else to help you render Quill editor easily.

Installation

Add this line to your application's Gemfile:

gem 'quill-editor-rails'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install quill-editor-rails

Usage

  • app/assets/javascripts/application.js
//= require quill.min
  • app/assets/stylesheets/application.css.scss
@import 'quill.snow';
// or
@import 'quill.bubble';