0.01
No commit activity in last 3 years
No release in over 3 years
A simple Rails asset pipeline wrapper for Rangy, "a cross-browser JavaScript range and selection library" written by the magnificent Tim Down
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

rangy-rails

A simple Rails asset pipeline wrapper for Rangy, "a cross-browser JavaScript range and selection library" written by the magnificent Tim Down.

The rangy-rails gem includes Rangy core and all of it's modules. The rangy-rails version will be kept in sync with Rangy's version as this gem really adds nothing but a convenient way of getting Rangy into your Rails app.

rangy-rails was created using a variation of YDD.

Installation

Add this line to your application's Gemfile:

gem 'rangy-rails'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rangy-rails

Usage

Easy! Just edit app/assets/javascripts/application.js and adjust it to your heart's delight.

Here's an example configuration that would include Rangy and all of it's modules:

//= require rangy-core
//= require rangy-cssclassapplier
//= require rangy-highlighter
//= require rangy-selectionsaverestore
//= require rangy-serializer
//= require rangy-textrange

Normally you would only include the modules you're actually using in your project.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request