0

我正在尝试使用RailsApps 教程之一中的应用程序模板。我得到这个RuntimeError

...  
extras  creating RVM gemset 'myApp'
     run    rvm rvmrc trust from "."
Marked /Users/dB/railsApp/myApp/Gemfile as trusted
  extras  switching to gemset 'myApp'
https://raw.github.com/RailsApps/rails3-application-templates/master/rails3-devise-rspec-cucumber-template.rb:1096:in `rescue in apply': Use rvm gem 1.11.3.5 or newer. (RuntimeError)

我很困惑,因为我使用的是 rvm 版本 1.14.2,而>不是他们似乎要求的版本 (1.11.3.5)。

有谁知道我做错了什么?

4

2 回答 2

1

rvm lib 代码在 1.11.3 版本中被提取到 gem 中,从那时起只应用了错误修复,因此除了第四位显示更新外,没有进行版本碰撞。

rvm 在安装新 ruby​​ 期间为您安装了 gem,因为 rvm gem 包含在 global.gems 文件中。

于 2012-08-14T07:28:36.337 回答
0

好吧,我想我明白了。我使用的是旧版本的 Ruby。我下载了最新的,但忘记在 RVM 中将其设置为当前版本。一旦我使新版本成为最新版本,这个错误就消失了。

于 2012-08-14T06:25:52.773 回答