# File lib/roodi/core/runner.rb, line 31 def start(paths) puts "\nRunning Roodi checks" paths = ['.'] if paths == [] all_files = collect_files(paths) @files_checked = all_files.count all_files.each do |path| check_file(path) end output_result(errors, @files_checked) end