class Guard::Flay::Processor

Public Class Methods

process(paths) click to toggle source
# File lib/guard/flay/processor.rb, line 6
def self.process(paths)
  UI.info "Running flay for files: '#{paths.join('\', \'')}'", reset: true

  flay = ::Flay.new(::Flay.parse_options)
  files = ::Flay.expand_dirs_to_files(paths)
  flay.process(*files)
  flay.report
  puts
end