Sha256: 0ab791d2993024725daf99b61ce9ff3fc47d5ff5ae0210b7d164bf05d1a33aa7
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# Jquery-rails 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 --version to install specific version of JQuery (default is 1.4.2) You're done! Don't forget to output `csrf_meta_tag` somewhere inside your `<head>` tag in your layout! ### Edge rails If you're using edge Rails, you'll need to use the branch that depends on Rails `~> 3.1`. Here's the line to put in your Gemfile, and everything else is the same: gem "jquery-rails", :git => "http://github.com/indirect/jquery-rails.git", :branch => "rails-3-1"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jquery-rails-0.2.2 | README.md |
jquery-rails-0.2.1 | README.md |