使用相同的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.如果我删除therubyracer和libv8,我会得到另一个错误,它告诉我以下信息:
Could not find rake-10.0.3 in any of the sources (Bundler::GemNotFound)如果我在我的Gemfile中添加了rake,同样的错误来自passenger,什么都不起作用
更不用说当捆绑包安装运行…时,libv8需要10minutes+来安装我有没有遇到过这样的问题并解决了,谢谢分享
+
有些人告诉我们用node.js代替竞赛者的…这两个节点是如何关联的,因为节点在rails之外?
发布于 2012-12-26 20:05:28
尝试将此内容添加到Gemfile中:
gem 'therubyracer','0.11.0beta5‘
然后捆绑安装。希望这能有所帮助。
https://stackoverflow.com/questions/13976861
复制相似问题