realtime-validations rails gem

04 Jan 2012

There is a new gem in the Rails world: realtime-validations.

It provides automatic realtime validations on your forms based on the validations set on the model.

The idea is to ask on every ‘blur’ event on every field of the form to the server whether this field is correct or not, creating a new model or finding the row if it contains an id.

This way you don’t need to replicate logic in your client that is already defined and implemented in your model at the server.

You can read more about realtime-validations here. You can also find the project on github.

comments powered by Disqus