Reputation: 16734
I am trying to use a gem found on github that has been upgraded to work with Rails 3.0
I am still on 2.3.9, so I can a dependency error on ActiveSupport > 3.0.0
How can I:
https://github.com/laserlemon/vestal_versions
Upvotes: 0
Views: 64
Reputation: 1536
Faster: just do gem install vestal_versions -v <correct version>
Upvotes: 1
Reputation: 21794
Find an earlier version on github ?
Github has a "switch tags" dropdown where you can select tags for previous versions. It appears for that gem there are currently 26 version tags available.
Tweak my app without doing a full upgrade to address the active support dependency?
I don't think it's possible to install ActiveSupport 3.0.0 without upgrading the rest of Rails.
Upvotes: 0