Gemified by Doc Walker
Provides the jqGrid
jQuery plugin packaged for the Rails 3.1+ asset pipeline.
Add these lines to your application's Gemfile
:
# jqgrid jquery plugin packaged for the rails asset pipeline
gem 'jqgrid-jquery-rails', '~> 4.6.001'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jqgrid-jquery-rails
Gem version notes:
- Version is in the format
X.Y.ZVV
whereX.Y.Z
is version ofjqGrid
plugin andVV
is version of gem (with leading zero); - Refer to Semantic Versioning 2.0.0 (http://semver.org);
Add these lines to app/assets/javascripts/application.js
// provides jqgrid jquery plugin from gem 'jqgrid-jquery-rails':
//= require jqgrid-jquery-rails
Add these lines to app/assets/stylesheets/application.css
/*
provides jqgrid jquery plugin from gem 'jqgrid-jquery-rails':
= require jqgrid-jquery-rails
*/
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
- jqGrid jQuery plugin
- jqGrid Documentation
- RailsCast #245 New Gem with Bundler -- inspiration
- Gemify Assets for Rails -- guidance