Method: Train::File#path

Defined in:
lib/train/file.rb

#pathObject



130
131
132
133
134
135
136
# File 'lib/train/file.rb', line 130

def path
  if symlink? && @follow_symlink
    link_path
  else
    @path
  end
end