0

我正在尝试在服务器上安装 chiliproject,遵循 -well done- 文档我遇到了这个错误

Could not find gem 'rubytree (~> 0.5.2) ruby' in any of the gem sources listed in your Gemfile.

我做了一个 gem install ruby​​tree

我收到这条消息

========================================================================

 Thank you for installing rubytree.

              WARNING: SIGNIFICANT API CHANGE in 0.8.0 !
              ------------------------------------------

 Please note that as of 0.8.0 the CamelCase method names are DEPRECATED.

 The new method names follow the ruby_convention (separated by '_').

 The old CamelCase methods still work (a warning will be displayed),
 but may go away in the future.

 Details of the API changes are documented in the API-CHANGES file.

========================================================================
Successfully installed rubytree-0.8.1
1 gem installed
Installing ri documentation for rubytree-0.8.1...
file 'COPYING,API-CHANGES' not found
Installing RDoc documentation for rubytree-0.8.1...
file 'COPYING,API-CHANGES' not found

也就是说安装成功了。那么为什么我会收到错误消息?如果错误来自 API 更改,我如何请求 ruby​​tree gem 的 0.5.2 版本?

当我这样做时,gem list --local | grep 'rubytree' 我有这个输出rubytree (0.8.1)

那么为什么系统说找不到 gem 'rubytree' 呢?

感谢您的任何帮助,

4

2 回答 2

0

根据您使用的 Rails 版本(听起来您使用的是相对较新的版本,如果它提示您输入 Gemfile),那么您需要使用Bundler来管理您的 gem。

尝试编辑您的 Gemfile,添加一个新行,内容为:

gem "rubytree", "< 0.6"

然后打开一个控制台,输入这个命令

bundle install

这应该可以解决您的问题,但是如果您在运行命令时仍然遇到错误,请尝试bundle exec在命令之前输入(即rails server变为bundle exec rails server)。

于 2011-10-18T18:58:55.863 回答
0

目前,我们需要rubytree0.5.2 或 0.5.3 版本,正如我们Gemfile的 0.8.1 中所指定的那样。您手动安装的版本无法满足该要求,这正是错误消息所述。

ruby错误消息中的文字似乎有点奇怪。您能否确保与Gemfile系统上的源代码完全相同?另外,能否请您删除所有用户安装的插件并重试?另外,您在哪个操作系统上使用哪个 ruby​​(类型和版本)?

于 2011-10-18T18:59:10.007 回答