Sha256: 480ab86f0780855c789ca3ebf5a4f19057a4b0e2d3c88e06635c117cf506ea43

Contents?: true

Size: 1.65 KB

Versions: 4

Compression:

Stored size: 1.65 KB

Contents

# Jquery-rails

jQuery! For Rails! So great.

Also provided is Sam Ruby's assert_select_jquery function, which is automatically included for use in tests.

## Rails 3.1

This gem vendors jQuery 1.6 and the latest jQuery UJS adapter for Rails 3.1 and greater. The files will be added to the asset pipeline and available for you to use. These two lines will be added to the file `app/assets/javascripts/application.js` by default:

    //= require jquery
    //= require jquery_ujs

If you wish to use jQuery UI as well, you can add this line to `application.js`:

    //= require jquery-ui

In order to use the themed parts of jQuery UI, you will also need to supply your own theme CSS. See [jqueryui.com](http://jqueryui.com) for more information.

### Installation

When you generate a new Rails 3.1 app, pass the `-j jquery` option, like this:

    rails new myapp -j jquery

Then run `bundle install`. You're done!

## Rails 3.0

This gem adds a single generator to Rails 3, jquery:install. Running the generator will remove any Prototype JS files you may happen to have, fetch jQuery and the jQuery-ujs driver for Rails, and (optionally) fetch jQuery UI.

The gem will also hook into the Rails configuration process, removing Prototype and adding jQuery to the javascript files included by the `javascript_include_tag(:defaults)` call. While the plugin downloads minified and un-minified versions of jQuery and jQuery UI, only the minified versions are included in :default.

### Installation

In your Gemfile, add this line:

    gem "jquery-rails"

Then, run `bundle install`. To invoke the generator, run:

    rails generate jquery:install #--ui to enable jQuery UI

You're done!

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jquery-rails-1.0.8 README.md
jquery-rails-1.0.7 README.md
jquery-rails-1.0.6 README.md
jquery-rails-1.0.5 README.md