大家好,我正在开发一个演示应用程序,并注意到在将gem google-drive gem插入到我的Gemfile中后,我得到了这个错误。
Resolving dependencies...
Bundler could not find compatible versions for gem "activesupport":
In Gemfile:
google-drive (>= 0) ruby depends on
middleman-core (>= 3.2.2) ruby depends on
activesupport (~> 3.2.6) ruby
rails (= 4.1.1) ruby depends on
activesupport (4.1.1)在我看来,google-drive gem需要比rails 4.1.1更早版本的activesupport。欢迎任何建议。
发布于 2014-05-11 06:22:10
派生google-drive gem,更新任何依赖项,并检查它是否工作。ACtually,如果你使用this gem,我看不到任何middleman-core依赖。Alos尝试使用master分支:
gem 'google-drive', github: 'gimite/google-drive-ruby' # or other path, which you use要更改依赖关系,只需在fork之后编辑存储库中的gemspec文件。然后将gem path (gimite/google-drive-ruby)更改为您自己的路径。
https://stackoverflow.com/questions/23586443
复制相似问题