class Build::Files::Path

def /(path)

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