【发布时间】:2012-09-02 16:34:31
【问题描述】:
在尝试更新需要安装新 gem 的 rails 应用程序时,在服务器 (Apache2) 上运行我的 rails 时出现以下错误
Could not find rake-0.9.2.2 in any of the sources (Bundler::GemNotFound)
/home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/spec_set.rb 90 in `block in materialize'
1 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/spec_set.rb 83 in `map!'
2 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/spec_set.rb 83 in `materialize'
3 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/definition.rb 127 in `specs'
4 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/definition.rb 172 in `specs_for'
5 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/definition.rb 161 in `requested_specs'
6 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/environment.rb 23 in `requested_specs'
7 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler/runtime.rb 11 in `setup'
8 /home/server/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.1.4/lib/bundler.rb 107 in `setup'
当我执行bundle install 或gem list --local 时,它会很好地列出宝石:
actionmailer (3.2.3)
actionpack (3.2.3)
activemodel (3.2.3)
activerecord (3.2.3)
activeresource (3.2.3)
activesupport (3.2.3)
arel (3.0.2)
bcrypt-ruby (3.0.1)
builder (3.0.0)
bundler (1.1.4)
coffee-rails (3.2.2)
coffee-script (2.2.0)
coffee-script-source (1.3.3)
devise (2.1.2)
dynamic_form (1.1.4)
erubis (2.7.0)
execjs (1.4.0)
hike (1.2.1)
i18n (0.6.0)
journey (1.0.3)
jquery-rails (2.0.2)
json (1.7.3)
mail (2.4.4)
mime-types (1.18)
multi_json (1.3.6)
orm_adapter (0.3.0)
polyglot (0.3.3)
rack (1.4.1)
rack-cache (1.2)
rack-ssl (1.3.2)
rack-test (0.6.1)
rails (3.2.3)
railties (3.2.3)
rake (0.9.2.2)
rdoc (3.12)
sass (3.1.19)
sass-rails (3.2.5)
sprockets (2.1.3)
sqlite3 (1.3.6)
thor (0.14.6)
tilt (1.3.3)
treetop (1.4.10)
tzinfo (0.3.33)
uglifier (1.2.4)
warden (1.2.1)
但是当我执行 ruby -v 时,它显示 ruby 1.8.7,错误日志显示 .rvm/gems/ruby-1.9.2-p320... 我如何告诉它使用已安装的 1.8.7,因为这一直有效(我对升级不感兴趣)
我找到了这篇文章 -[Why am I getting this Passenger error Could not find rake-0.9.2.2 in any of the sources?
[1]: Why am I getting this Passenger error Could not find rake-0.9.2.2 in any of the sources? - 试过了,没有成功!
【问题讨论】:
-
根据需要做 rvm 使用 1.8.7 或 rvm 使用 1.9.2。
-
如何告诉它使用已安装的 1.8.7 ?这是什么意思——你想使用 1.8.7
-
是的,我想要 1.8.7 - 它已与 1.8.7 一起使用,但由于某种原因,在修改了一些文件并更改了 gem 文件并进行捆绑安装后,它现在想使用 1.9 .2 而不是 1.8.7
-
你能粘贴你的Gemfile吗,检查Gemfile中的rails版本。
-
还有你对使用@jens jensen 的rails 版本感兴趣
标签: ruby-on-rails apache2