Reputation: 4867
I know that client_side_validations
is not available as a gem
for Rails 4
. But there is a 4.0. beta
branch on github. When downloaded, how can I install it ?
Upvotes: 3
Views: 1054
Reputation: 23939
Specify it in your bundle:
gem 'client_side_validations',
:git => 'git://github.com/bcardarella/client_side_validations.git',
:branch => '4-0-beta'
Upvotes: 4