-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprint.rb
39 lines (29 loc) · 862 Bytes
/
sprint.rb
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
require 'lib/model.rb'
require 'lib/commands.rb'
Scrummy::Sprint.define "09:06" do
schedule "2009-05-04", "2009-05-29",
:exclude_weekends => true,
:exclude_dates => %w(2009-05-21 2009-05-22)
goal "To be able to start developing flash game on the new GDK 2.0"
participants :engand, :erifre, :norhel
story "Flash Client GDK" do
description <<-END
The actual description of the story... some details
that might be interesting.
END
task :flash_codegen, "Annotation-based code generation" do
description "Dflksfdj kjdh fksdfk G"
score 3
end
task :flash_services, "Full Service support" do
description "Expose all services in the Flash API"
score 2
end
end
story "Blaze Module :: General" do
description "Unclassified tasks for the Blaze module"
task :blaze_threads, "Thread Safety" do
score 2
end
end
end