user1611830
user1611830

Reputation: 4867

how to install gem manually

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

Answers (1)

Nick Veys
Nick Veys

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

Related Questions