-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearner_engagement.tji
71 lines (59 loc) · 1.59 KB
/
learner_engagement.tji
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
59
60
61
62
63
64
65
66
67
68
69
70
71
task learner_engagement "LE Strand" {
depends !strategic_planning
# Value Prop First
task learner_value_prop "Develop Learner VP" {
task lvp_scope "Scope LVP" {
allocate Neels, Will
effort 3d
}
task lvp_partner "Find LVP partner" {
depends !lvp_scope
allocate Will
duration 2w
}
task lvp_work "LVP partner work" {
depends !lvp_partner
duration 2m
}
}
# Push messaging / assignments
task learner_msg "Test Push Messaging" {
task lmsg_scope "Scope LMSG" {
allocate Gina
effort 3d
}
task lmsg_test "Execute tests over 3 weeks" {
depends !lmsg_scope
allocate Gina, Hannelie
duration 3w
}
task lmsg_spec "Spec Design" {
depends !lmsg_test
duration 2w
}
task lmsg_dev "Design implementation" {
depends !lmsg_spec
duration 4w
}
}
# Elements of gamification
task learner_game "Elements of Gamification" {
task leg_scope "Scope LEG" {
allocate Mark
effort 3d
}
task leg_test "Execute tests over 3 weeks" {
depends !leg_scope
allocate Mark, John, Hein, Ros
duration 3w
}
task leg_spec "Spec Design" {
depends !leg_test
duration 2w
}
task lmsg_dev "Design implementation" {
depends !leg_spec
duration 4w
}
}
}