Ruby on Rails 3.1 没有 execjs?
如果您安装 Ruby on Rails 3.1,默认情况下会安装 gem execjs。我排除了 CoffeeScript,因为我认为它需要 execjs,但 execjs 无论如何都想安装。 execjs 现在是 Ruby on Rails 应用程序的必需项吗?还是有办法从安装中排除此 gem?
If you install Ruby on Rails 3.1 the gem execjs gets installed by default. I excluded CoffeeScript, because I thought it needed execjs, but execjs wants to be installed anyway.
Is execjs now a requirement for Ruby on Rails applications or is there a way to exclude this gem from an installation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您从 Gemfile 中注释掉与资产管道相关的所有 gem,则不会安装 execjs(这在生产中应该可以正常工作)。
If you comment out all gems relating to the asset pipeline from the Gemfile then execjs will not be installed (and this should work fine in production).