Ruby on Rails 3.1 没有 execjs?

发布于 2024-11-06 03:02:16 字数 292 浏览 0 评论 0原文

如果您安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒绊 2024-11-13 03:02:16

如果您从 Gemfile 中注释掉与资产管道相关的所有 gem,则不会安装 execjs(这在生产中应该可以正常工作)。

# Gems used only for assets and not required
# in production environments by default.
#group :assets do
#  gem 'sass-rails', "  ~> 3.1.0"
#  gem 'coffee-rails', "~> 3.1.0"
#  gem 'uglifier'
#end

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).

# Gems used only for assets and not required
# in production environments by default.
#group :assets do
#  gem 'sass-rails', "  ~> 3.1.0"
#  gem 'coffee-rails', "~> 3.1.0"
#  gem 'uglifier'
#end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文