문제

I'm trying to get my rails3 app & gem taps & heroku to play nicely together. One googled solution is to use an earlier version of sequel. So I'd like to try to have bundler use sequel v3.13.0 instead of sequel v3.15.0, but bundler says:

You have requested:
sequel = 3.13.0

The bundle currently has sequel locked at 3.15.0.
Try running `bundle update sequel`

It could be dependencies thats preventing this - how do I find out? Can I do this some other way? thanks...

도움이 되었습니까?

해결책

In your Gemfile, put gem "sequel", "3.13.0"

Then run bundle install --relock

To learn more about bundler: http://asciicasts.com/episodes/201-bundler

다른 팁

Just to add to the other answer, you can also you version strings in the Gemfile. So, you could put like this in the Gemfile gem "sequel", "> 3.13.0" or gem "sequel". You might find that useful sometime in the future!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top