找不到activesupport的兼容版本(3.1.12)

时间:2014-03-11 08:22:21

标签: ruby-on-rails ruby gem activesupport bundle-install

我的bundle install错误了。 在我的Gemfile中,我使用了

gem 'ar-octopus', :git => "git://github.com/tchandy/octopus.git", :require => "octopus"

但是当我尝试“bundle install

它说:

Bundler could not find compatible versions for gem "activesupport":
  In snapshot (Gemfile.lock):
    activesupport (3.1.12)

  In Gemfile:
    ar-octopus (>= 0) ruby depends on
      activesupport (>= 3.2.0) ruby

Running `bundle update` will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.

我也做了“bundle update”,仍然有同样的错误

1 个答案:

答案 0 :(得分:0)

您的Rails版本(3.1.12)与您尝试安装的or-octopus gem版本不兼容(它要求Rails版本为3.2或更高版本)。

相关问题