Method: Uncov::Report::Filters::FileSystem.files
- Defined in:
- lib/plugins/uncov/report/filters/file_system.rb
.files(finder) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/plugins/uncov/report/filters/file_system.rb', line 9 def files(finder) finder.file_system_files.file_names.map do |file_name| Uncov::Report::File.new( file_name:, git: finder.git_files.file?(file_name), lines: lines(finder, file_name) ) end end |