changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / emacs/lib/scrum.el

changeset 606: 6fc04c4d465c
child: 35a579313b80
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 18 Aug 2024 20:34:26 -0400
permissions: -rw-r--r--
description: emacs and rocksdb upgrades

- more org workflow updates
- added scrum.el
- renamed batch.lisp > writebatch.lisp
- callback tests
1 ;;; scrum.el --- Scrum-like Planning and Roadmaps in Org -*- lexical-binding: t; -*-
2 
3 ;; Copyright (C) 2024 Richard Westhaver
4 
5 ;; Author: Richard Westhaver <richard.westhaver@gmail.com>
6 ;; Keywords: maint
7 
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12 
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17 
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
20 
21 ;;; Commentary:
22 
23 ;; ref: https://www.scrum.org/resources/what-scrum-module
24 
25 ;; roadmap: https://compiler.company/plan/roadmap.html
26 
27 ;; tasks: https://compiler.company/plan/tasks
28 
29 ;;; Code:
30 (require 'ulang)
31 (require 'uml-mode)
32 (defvar scrum-properties '("SPRINT" "RELEASE" "TASKID"))
33 
34 (provide 'scrum)
35 ;;; scrum.el ends here