class DirTravel::DirEntry

Directory type entry.

Public Class Methods

new( name, abspath = nil ) click to toggle source

Set name and abspath if given.

@param name [String] Directory name. @param abspath [String] Set abspath if given. Otherwise it

is generated from pieces.
Calls superclass method DirTravel::Entry::new
# File lib/dirtravel.rb, line 174
def initialize( name, abspath = nil )
    super( name )
    if abspath
        @abspath = abspath
    end
end