module DirModel::Model

Public Class Methods

new(path=nil, options={}) click to toggle source

@param [NilClass] path not used here, see {Input} @param [Hash] options @option options [String] :parent if the instance is a child, pass the parent

# File lib/dir_model/model.rb, line 17
def initialize(path=nil, options={})
  @parent = options[:parent]
end