thewillcole
thewillcole

Reputation: 3045

How can I see what gems are available at a particular github url?

This is a pretty basic question about how the bundler looks up gems.

While trying to revert to a previous version of a gem I'm using in my Rails application, I get the following bundle install error:

Could not find gem 'client_side_validations (= 3.2.0.beta.3) ruby' in https://github.com/bcardarella/client_side_validations.git (at master).
Source contains 'client_side_validations' at: 3.2.0.beta.6

Which is totally weird because I was on 3.2.0.beta.3 a few days ago and the bulder was happy.

I'm super curious to find out what versions of the gem are available though the url ('https://github.com/bcardarella/client_side_validations.git') to the bundler. How do I go about doing that?

Upvotes: 0

Views: 80

Answers (1)

Hoa
Hoa

Reputation: 3207

Bundler pulls the source from the master branch and it gets the version of the gem here

Upvotes: 1

Related Questions