-1

要求 RVM 安装ruby-1.9.3-head,然后运行ruby -v​​yield ruby 1.9.3p260

做一个bundle install,我得到一个错误Looking for http://ftp.ruby-lang.org/pub/ruby/1.9/ruby -1.9.3-p260.tar.gz and all I got was a 404!

看着http://ftp.ruby-lang.org/pub/ruby/1.9/我没看到的清单1.9.3-p260

RVM 如何/为什么认为 head 是不存在的东西http://ftp.ruby-lang.org/pub/ruby/1.9/

事实上,rvm list known它甚至没有1.9.3-p260被列为已知的 Ruby!

4

1 回答 1

0

确保使用新的 RVM:

rvm get stable

然后确保你使用红宝石:

rvm use 1.9.3-head --install

您可以验证 ruby​​ 是否用于:

rvm info

目前 1.9.3-head 开发分支的补丁级别为 260:https://github.com/ruby/ruby/blob/ruby_1_9_3/version.h#L2 / https://github.com/ruby/ruby/blob/b800677425e0839eac1014d0a2fe9201cabe3a18 /version.h#L2

于 2012-08-13T17:31:54.350 回答