ruby – Guard,如何暂时跟踪特定文件?

前端之家收集整理的这篇文章主要介绍了ruby – Guard,如何暂时跟踪特定文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 Guard gem

在开发的某个时候,我需要仅跟踪特定文件或多个文件,而不是整个项目.

是否有一些方便的方法来临时跟踪特定文件

我知道可以通过修改防护文件来完成,但我认为这不是一个简洁的解决方案.

解决方法

实际上你可以在it语句中使用focus:true:

在您的Spec文件中.

it "needs to focus on this!",focus: => true do
  #test written here.
end

然后在spec / spec_helper中,您需要添加config选项.

RSpec.configure do |config| 
  config.treat_symbols_as_Metadata_keys_with_true_values = true  
  config.filter_run :focus => true  
  config.run_all_when_everything_filtered = true 
end

然后,Guard将自动获取专注的测试并仅运行它.此外,config.run_all_when_everything_filtered = true告诉后卫在没有任何过滤的情况下运行所有​​测试,即使该名称听起来有误导性.

我发现Ryan Bate的导演对GuardSpork非常有帮助.

原文链接:https://www.f2er.com/ruby/268813.html

猜你在找的Ruby相关文章