Sha256: d60ff53c2ceb8dc58e22cc0cf7ef3a5d966a6f26ce492a254afc3de1c44ab4d4
Contents?: true
Size: 929 Bytes
Versions: 15
Compression:
Stored size: 929 Bytes
Contents
require "guard/rspec/inspectors/base_inspector.rb" module Guard class RSpec < Plugin module Inspectors # Inspector that focuses on set of paths if any of them is failing. # Returns only that set of paths on all future calls to #paths # until they all pass class FocusedInspector < BaseInspector attr_accessor :focused_locations def initialize(options = {}) super @focused_locations = [] end def paths(paths) if focused_locations.any? focused_locations else _clean(paths) end end def failed(locations) if locations.empty? @focused_locations = [] else @focused_locations = locations if focused_locations.empty? end end def reload @focused_locations = [] end end end end end
Version data entries
15 entries across 15 versions & 3 rubygems