From d09e6cebade81d5c10226115b51e2e11ac4d8747 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sat, 1 Mar 2025 11:16:55 +0100 Subject: add roadmap; use citations --- _roadmap.yml | 100 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 _roadmap.yml (limited to '_roadmap.yml') diff --git a/_roadmap.yml b/_roadmap.yml new file mode 100644 index 0000000..97998d3 --- /dev/null +++ b/_roadmap.yml @@ -0,0 +1,100 @@ +# Roadmap for software project Bachelorizer +# +# SPDX-License-Identifier: GPL-3.0-or-later +# SPDX-FileCopyrightText: 2025 Jonas Smedegaard +# +# @see + +goal: + label: Deliver the report + depends: + - docs_tasklist + - docs_model + - docs_structure + - docs_program + - docs_testing + +docs_tasklist: + status: ready + label: | + Document + the task list + depends: + - tasklist + +tasklist: + status: finished + label: | + Define and structure + the tasks needed + +docs_model: + status: next + label: | + Document + program model + depends: + - model + +model: + status: next + label: | + Make a class diagram + for the Bachelor programme + and its components + +docs_structure: + status: ready + label: | + Document + program structure + depends: + - structure + +structure: + status: next + label: | + Implement classes + to represent the Bachelor programme and its components + depends: + - model + +docs_program: + status: ready + label: | + Document + program + depends: + - method_validate + - testsuite + +method_validate: + label: | + Implement a method + to check whether a programme is valid + depends: + - structure + +testsuite: + label: | + Setup routines + to check unit tests + depends: + - test_validate + +test_validate: + label: | + Specify and run + unit tests for the valid method + depends: + - method_validate + +docs_testing: + status: blocked + label: | + Document results + of checking unit test + [maybe postpone for next delivery] + depends: + - structure + - test_validate -- cgit v1.2.3