class SimpleHotFolder::HotFolder::Item

Each file or folder from the input folder.

@param [String] name Name of the file/folder. @param [String] path Path of the file/folder.

Attributes

name[R]
path[R]

Public Class Methods

new(name, path) click to toggle source
# File lib/simple_hot_folder/hot_folder.rb, line 102
def initialize(name, path)
  @name = name
  @path = path
end