Cleditor::Rails
Integrates CLEditor into Rails 3.1+ asset pipeline
Url: http://premiumsoftware.net/cleditor/
Installation
Add this line to your application's Gemfile:
gem 'cleditor-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install cleditor-rails
Usage
1.) Run
$ rails g cleditor:install
2.) Add this to your application.js
$(document).ready(function() {
$("textarea").cleditor();
});
3.) In production.rb
config.assets.compile = true
More configuration options here: http://premiumsoftware.net/cleditor/docs/GettingStarted.html#usage
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request