module FileIndexer

Namespace for a simple file indexer

Constants

VERSION

Public Class Methods

new(dirs, exts, db_file, &action) click to toggle source

Equivalent to FileIndexer::Indexer.new(dirs, exts, db_file, &action)

# File lib/file_indexer.rb, line 8
def self.new(dirs, exts, db_file, &action)
  Indexer.new(dirs, exts, db_file, &action)
end