ruby on rails 3 - The rubyracer + libV8



使用相同的gemfile部署了一堆应用程序;

我现在有一个大问题,打乱了我做的任何事情。

rubyracer告诉我它需要在gemfile中添加gem 'libv8', '~> 3.11.8'(以前不是这样的)。

An error occured while installing therubyracer (0.11.0), and Bundler cannot continue.
Make sure that `gem install therubyracer -v '0.11.0'` succeeds before bundling.

如果我删除了rubyracer和libv8,我得到了另一个错误,告诉我以下内容:

Could not find rake-10.0.3 in any of the sources (Bundler::GemNotFound)

如果我在我的Gemfile中添加rake,同样的错误来自passenger,没有任何工作

更不用说libv8需要10分钟以上的时间来安装当一个bundle install运行…如果有人遇到过这样的问题并解决了,谢谢分享

+

有些人告诉使用node.js而不是therbyracer .这两者是如何相关的,因为node将在rails之外?

尝试将此添加到您的Gemfile:-

gem"therubyracer"、"0.11.0beta5"

,然后bundle install。

相关内容

  • 没有找到相关文章

最新更新