File: project.yaml

package info (click to toggle)
libcyaml 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: ansic: 20,884; makefile: 166; sh: 13
file content (58 lines) | stat: -rw-r--r-- 1,011 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
project: Write new browser layout engine.
start:
  day: 1
  month: June
  year: 2018
people:
  - Stephen
  - Neil
  - Alex
irrelevant:
  - details:
      - the app doesn't need this stuff
      - so it should be able to ignore it

tasks:
  - name: Read the HTML and CSS specs.
    flags:
      - Important
    estimate:
      weeks: 2
    people:
      - Stephen
      - Neil

  - name: Think of name for library.
    estimate:
      hours: 1

  - name: Create project repo.
    estimate:
      hours: 1
    depends:
      - Think of name for library.
    people:
      - Alex

  - name: Initial design of library API.
    flags:
      - Important
      - Engineering
    depends:
      - Read the HTML and CSS specs.
      - Create project repo.
    estimate:
      days: 1

  - name: Plan the initial implementation
    flags:
      - Engineering
      - Documentation
      - Management
    depends:
      - Initial design of library API.
    estimate:
      days: 6
    people:
      - Stephen
      - Alex