Method: ShellHelpers::PathnameExt::Base#follow

Defined in:
lib/shell_helpers/pathname.rb

#followObject

follow a symlink



293
294
295
296
297
298
299
300
301
# File 'lib/shell_helpers/pathname.rb', line 293

def follow
	return self unless symlink?
	l=readlink
	if l.relative?
		self.dirname+l
	else
		l
	end
end