2

我显然在这里遗漏了一些东西。我正在尝试安装扭矩箱 gems 并遇到此错误(在 Mac 上):

gem install torquebox-server --pre --source http://torquebox.org/2x/builds/LATEST/gem-repo/    

Could not find a valid gem 'torquebox-server' (>= 0), here is why:
          Found torquebox-server (2.x.incremental.424), but was for platform java

我已经安装了 jruby,版本 1.6.3。它在我的路上。我不明白上面的错误。如果您需要更多信息,请告诉我。

4

1 回答 1

3

马克:

看起来它正在使用gem的MRI版本。如果 JRuby 在您的路径中,请尝试:

jruby -S gem install torquebox-server --pre --source http://torquebox.org/2x/builds/LATEST/gem-repo/

您可能还需要通过 JRuby 显式运行 torquebox 命令:

jruby -S torquebox deploy .
jruby -S torquebox run

此外,如果可能,您应该升级到 JRuby 1.6.4 - 它修复了我们在 1.6.3 中遇到的一些问题,并且是我们目前测试 TorqueBox 所用的。

于 2011-09-14T11:13:09.353 回答