No release in over 3 years
Low commit activity in last 3 years
Integrate the jQuery Validation plugin into the Rails asset pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Jquery::Validation::Rails

jQuery Validation for the Rails Asset Pipeline.

Installing this Gem

Add the following line to your project's Gemfile:

gem 'jquery-validation-rails'

Run the following in your terminal:

cd ~/path/to/my/project
bundle install

Requiring the Assets

Add, at least, the following to your JavaScript manifest file:

//= require jquery.validate

If you need the accept, creditcard, extension, phoneUS, or require_from_group additional methods, add this line too:

//= require jquery.validate.additional-methods

If you'd like to take advantage of the library's built-in translations, add the ones you need:

//= require jquery.validate.localization/messages_es
//= require jquery.validate.localization/messages_de

Or require all of them:

//= require_tree jquery.validate.localization

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