module SimpleHotFolder

Constants

NAME
VERSION

Public Class Methods

for_files(input_path, error_path) click to toggle source

Create hot folder that listens for files.

@param [String] input_path Input folder path @param [String] error_path Error folder path @return [HotFolder]

# File lib/simple_hot_folder.rb, line 21
def self.for_files(input_path, error_path)
  HotFolder.new(input_path, error_path)
end