class Build::Files::Path

def +(path)

Parameters:
  • path (String, nil) -- (Optionally) the path to append.
def +(path)
	if path
		self.class.new(File.join(@full_path, path), @root)
	else
		self
	end
end