module Rubycritic::FilesInitializer

def self.init(paths)

def self.init(paths)
  source = SourceLocator.new(paths)
  source.pathnames.map do |pathname|
    AnalysedFile.new(:pathname => pathname, :smells => [], :duplication => 0)
  end
end