如何使用 Bundler 在 Rails 3 中暂时禁用 gem?

发布于 2024-12-02 14:06:35 字数 77 浏览 0 评论 0原文

我发现 redgreen gem 与测试文件的 ISO-8859-1 编码不兼容。暂时禁用一个 gem 来运行某些测试文件的最佳方法是什么?

I have discovered that the redgreen gem is incompatible with ISO-8859-1 encoding of test files. What is the best way to disable one gem temporarily to run certain test files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无名指的心愿 2024-12-09 14:06:36

我的第一个建议是以 UTF-8 格式保存这些文件。

或者,我会研究 Bundler 的分组功能

在您的 Gemfile 中

group :utf8 do
  gem 'redgreen'
end

,然后仅当您想要使用 redgreen gem 时才需要该组。

Bundler.require(:utf8, :default, Rails.env)

My first advice would be to save those files in UTF-8.

Alternatively, I'd look into the grouping feature of Bundler.

In your Gemfile

group :utf8 do
  gem 'redgreen'
end

And then require that group only when you want to use the redgreen gem.

Bundler.require(:utf8, :default, Rails.env)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文