Class: SimpleCov::StringFilter
Instance Attribute Summary
Attributes inherited from Filter
Instance Method Summary collapse
- 
  
    
      #matches?(source_file)  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    
Returns true when the given source file’s filename matches the string configured when initializing this Filter with StringFilter.new(‘somestring’).
 
Methods inherited from Filter
build_filter, class_for_argument, #initialize, #passes?
Constructor Details
This class inherits a constructor from SimpleCov::Filter
Instance Method Details
#matches?(source_file) ⇒ Boolean
Returns true when the given source file’s filename matches the string configured when initializing this Filter with StringFilter.new(‘somestring’)
      56 57 58  | 
    
      # File 'lib/simplecov/filter.rb', line 56 def matches?(source_file) source_file.project_filename.include?(filter_argument) end  |