如何使用 Bundler 在 Rails 3 中暂时禁用 gem?
我发现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的第一个建议是以 UTF-8 格式保存这些文件。
或者,我会研究 Bundler 的分组功能。
在您的 Gemfile 中
,然后仅当您想要使用 redgreen gem 时才需要该组。
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
And then
require
that group only when you want to use theredgreen
gem.