Provides client side validations for forms with the http://formvalidation.io/ library.
The original formvalidation repo can be found here: https://github.com/formvalidation/formvalidation. This is only a gem containing a release version for easier use.
Add into your Gemfile
gem 'formvalidation-rails'
In your Rails directory run
bundle install
Add into your application.js
//= require formvalidation.min
And if needed the extension (for html frameworks) and language packs you need:
//= require formvalidation/framework/bootstrap.min
//= require formvalidation/language/de_DE.min
Add into your application.css
*= require formvalidation.min
Important for commercial use a commercial license for formvalidation.io needs to be purchased at http://formvalidation.io/
This gem was build after the example of https://rubygems.org/gems/bootstrap-validator-rails, a earlier version of formvalidation.io under a different name.