tsenart-pivotal-tracker 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/Gemfile +16 -0
  2. data/Gemfile.lock +48 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +77 -0
  5. data/Rakefile +50 -0
  6. data/VERSION +1 -0
  7. data/lib/pivotal-tracker/activity.rb +46 -0
  8. data/lib/pivotal-tracker/attachment.rb +16 -0
  9. data/lib/pivotal-tracker/client.rb +41 -0
  10. data/lib/pivotal-tracker/extensions.rb +11 -0
  11. data/lib/pivotal-tracker/iteration.rb +34 -0
  12. data/lib/pivotal-tracker/membership.rb +20 -0
  13. data/lib/pivotal-tracker/note.rb +58 -0
  14. data/lib/pivotal-tracker/project.rb +58 -0
  15. data/lib/pivotal-tracker/proxy.rb +66 -0
  16. data/lib/pivotal-tracker/story.rb +148 -0
  17. data/lib/pivotal-tracker/task.rb +53 -0
  18. data/lib/pivotal-tracker/validation.rb +68 -0
  19. data/lib/pivotal-tracker.rb +40 -0
  20. data/lib/pivotal_tracker.rb +2 -0
  21. data/pivotal-tracker.gemspec +121 -0
  22. data/spec/fixtures/activity.xml +177 -0
  23. data/spec/fixtures/created_note.xml +14 -0
  24. data/spec/fixtures/created_story.xml +14 -0
  25. data/spec/fixtures/iterations_all.xml +237 -0
  26. data/spec/fixtures/iterations_backlog.xml +163 -0
  27. data/spec/fixtures/iterations_current.xml +47 -0
  28. data/spec/fixtures/iterations_done.xml +33 -0
  29. data/spec/fixtures/memberships.xml +42 -0
  30. data/spec/fixtures/notes.xml +33 -0
  31. data/spec/fixtures/project.xml +51 -0
  32. data/spec/fixtures/project_activity.xml +177 -0
  33. data/spec/fixtures/projects.xml +103 -0
  34. data/spec/fixtures/stale_fish.yml +100 -0
  35. data/spec/fixtures/stories.xml +293 -0
  36. data/spec/fixtures/tasks.xml +24 -0
  37. data/spec/spec.opts +1 -0
  38. data/spec/spec_helper.rb +31 -0
  39. data/spec/support/stale_fish_fixtures.rb +67 -0
  40. data/spec/unit/pivotal-tracker/activity_spec.rb +32 -0
  41. data/spec/unit/pivotal-tracker/attachment_spec.rb +62 -0
  42. data/spec/unit/pivotal-tracker/client_spec.rb +87 -0
  43. data/spec/unit/pivotal-tracker/iteration_spec.rb +52 -0
  44. data/spec/unit/pivotal-tracker/membership_spec.rb +20 -0
  45. data/spec/unit/pivotal-tracker/note_spec.rb +61 -0
  46. data/spec/unit/pivotal-tracker/project_spec.rb +55 -0
  47. data/spec/unit/pivotal-tracker/story_spec.rb +185 -0
  48. data/spec/unit/pivotal-tracker/task_spec.rb +21 -0
  49. metadata +236 -0
@@ -0,0 +1,237 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <iterations type="array">
3
+ <iteration>
4
+ <id type="integer">1</id>
5
+ <number type="integer">1</number>
6
+ <start type="datetime">2010/07/12 05:00:00 UTC</start>
7
+ <finish type="datetime">2010/07/19 05:00:00 UTC</finish>
8
+ <stories type="array">
9
+ <story>
10
+ <id type="integer">4460116</id>
11
+ <project_id type="integer">102622</project_id>
12
+ <story_type>feature</story_type>
13
+ <url>http://www.pivotaltracker.com/story/show/4460116</url>
14
+ <estimate type="integer">0</estimate>
15
+ <current_state>accepted</current_state>
16
+ <description>This is a story that's finished.</description>
17
+ <name>Old, accepted story</name>
18
+ <requested_by>Jon Mischo</requested_by>
19
+ <created_at type="datetime">2010/07/27 21:58:28 UTC</created_at>
20
+ <updated_at type="datetime">2010/07/27 22:21:17 UTC</updated_at>
21
+ <accepted_at type="datetime">2010/07/18 17:00:00 UTC</accepted_at>
22
+ </story>
23
+ </stories>
24
+ </iteration>
25
+ <iteration>
26
+ <id type="integer">2</id>
27
+ <number type="integer">2</number>
28
+ <start type="datetime">2010/07/19 05:00:00 UTC</start>
29
+ <finish type="datetime">2010/07/26 05:00:00 UTC</finish>
30
+ <stories type="array">
31
+ </stories>
32
+ </iteration>
33
+ <iteration>
34
+ <id type="integer">3</id>
35
+ <number type="integer">3</number>
36
+ <start type="datetime">2010/07/26 05:00:00 UTC</start>
37
+ <finish type="datetime">2010/08/02 05:00:00 UTC</finish>
38
+ <stories type="array">
39
+ <story>
40
+ <id type="integer">4459994</id>
41
+ <project_id type="integer">102622</project_id>
42
+ <story_type>feature</story_type>
43
+ <url>http://www.pivotaltracker.com/story/show/4459994</url>
44
+ <estimate type="integer">2</estimate>
45
+ <current_state>unstarted</current_state>
46
+ <description>Generic description</description>
47
+ <name>Tasks Test</name>
48
+ <requested_by>Jon Mischo</requested_by>
49
+ <created_at type="datetime">2010/07/27 21:51:01 UTC</created_at>
50
+ <updated_at type="datetime">2010/07/27 22:20:46 UTC</updated_at>
51
+ <tasks type="array">
52
+ <task>
53
+ <id type="integer">468113</id>
54
+ <description>Task number 1</description>
55
+ <position>1</position>
56
+ <complete>false</complete>
57
+ <created_at type="datetime">2010/07/27 21:51:28 UTC</created_at>
58
+ </task>
59
+ <task>
60
+ <id type="integer">468114</id>
61
+ <description>Number 2 Task</description>
62
+ <position>2</position>
63
+ <complete>false</complete>
64
+ <created_at type="datetime">2010/07/27 21:51:32 UTC</created_at>
65
+ </task>
66
+ <task>
67
+ <id type="integer">468117</id>
68
+ <description>3rd task is a charm</description>
69
+ <position>3</position>
70
+ <complete>true</complete>
71
+ <created_at type="datetime">2010/07/27 21:51:42 UTC</created_at>
72
+ </task>
73
+ </tasks>
74
+ </story>
75
+ </stories>
76
+ </iteration>
77
+ <iteration>
78
+ <id type="integer">4</id>
79
+ <number type="integer">4</number>
80
+ <start type="datetime">2010/08/02 05:00:00 UTC</start>
81
+ <finish type="datetime">2010/08/09 05:00:00 UTC</finish>
82
+ <stories type="array">
83
+ <story>
84
+ <id type="integer">4460038</id>
85
+ <project_id type="integer">102622</project_id>
86
+ <story_type>feature</story_type>
87
+ <url>http://www.pivotaltracker.com/story/show/4460038</url>
88
+ <estimate type="integer">1</estimate>
89
+ <current_state>unstarted</current_state>
90
+ <description>This is a story that has comments.</description>
91
+ <name>This is for comments</name>
92
+ <requested_by>Jon Mischo</requested_by>
93
+ <created_at type="datetime">2010/07/27 21:53:16 UTC</created_at>
94
+ <updated_at type="datetime">2010/07/27 22:20:48 UTC</updated_at>
95
+ <notes type="array">
96
+ <note>
97
+ <id type="integer">2111593</id>
98
+ <text>This is a comment...whee!</text>
99
+ <author>Jon</author>
100
+ <noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
101
+ </note>
102
+ <note>
103
+ <id type="integer">2128955</id>
104
+ <text>Test note</text>
105
+ <author>Test Suite Access</author>
106
+ <noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
107
+ </note>
108
+ <note>
109
+ <id type="integer">2128959</id>
110
+ <text>Test note</text>
111
+ <author>Test Suite Access</author>
112
+ <noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
113
+ </note>
114
+ <note>
115
+ <id type="integer">2129077</id>
116
+ <text>Test note</text>
117
+ <author>Test Suite Access</author>
118
+ <noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
119
+ </note>
120
+ <note>
121
+ <id type="integer">2129374</id>
122
+ <text>Test note</text>
123
+ <author>Test Suite Access</author>
124
+ <noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
125
+ </note>
126
+ </notes>
127
+ </story>
128
+ </stories>
129
+ </iteration>
130
+ <iteration>
131
+ <id type="integer">5</id>
132
+ <number type="integer">5</number>
133
+ <start type="datetime">2010/08/09 05:00:00 UTC</start>
134
+ <finish type="datetime">2010/08/16 05:00:00 UTC</finish>
135
+ <stories type="array">
136
+ <story>
137
+ <id type="integer">4460598</id>
138
+ <project_id type="integer">102622</project_id>
139
+ <story_type>feature</story_type>
140
+ <url>http://www.pivotaltracker.com/story/show/4460598</url>
141
+ <estimate type="integer">3</estimate>
142
+ <current_state>unstarted</current_state>
143
+ <description>This story has attachments.</description>
144
+ <name>Story with attachments</name>
145
+ <requested_by>Jon Mischo</requested_by>
146
+ <created_at type="datetime">2010/07/27 22:33:13 UTC</created_at>
147
+ <updated_at type="datetime">2010/07/27 22:33:28 UTC</updated_at>
148
+ <attachments type="array">
149
+ <attachment>
150
+ <id type="integer">491576</id>
151
+ <filename>LICENSE</filename>
152
+ <description></description>
153
+ <uploaded_by>Jon</uploaded_by>
154
+ <uploaded_at type="datetime">2010/07/27 22:34:23 UTC</uploaded_at>
155
+ <url>http://www.pivotaltracker.com/resource/download/491576</url>
156
+ </attachment>
157
+ <attachment>
158
+ <id type="integer">493019</id>
159
+ <filename>README.rdoc</filename>
160
+ <description>README file from api gem</description>
161
+ <uploaded_by>Jon</uploaded_by>
162
+ <uploaded_at type="datetime">2010/07/28 15:16:18 UTC</uploaded_at>
163
+ <url>http://www.pivotaltracker.com/resource/download/493019</url>
164
+ </attachment>
165
+ </attachments>
166
+ </story>
167
+ </stories>
168
+ </iteration>
169
+ <iteration>
170
+ <id type="integer">6</id>
171
+ <number type="integer">6</number>
172
+ <start type="datetime">2010/08/16 05:00:00 UTC</start>
173
+ <finish type="datetime">2010/08/23 05:00:00 UTC</finish>
174
+ <stories type="array">
175
+ <story>
176
+ <id type="integer">4473735</id>
177
+ <project_id type="integer">102622</project_id>
178
+ <story_type>feature</story_type>
179
+ <url>http://www.pivotaltracker.com/story/show/4473735</url>
180
+ <estimate type="integer">1</estimate>
181
+ <current_state>unstarted</current_state>
182
+ <description></description>
183
+ <name>Attachment upload test story</name>
184
+ <requested_by>Jon</requested_by>
185
+ <created_at type="datetime">2010/07/28 18:17:33 UTC</created_at>
186
+ <updated_at type="datetime">2010/07/28 18:17:44 UTC</updated_at>
187
+ <attachments type="array">
188
+ <attachment>
189
+ <id type="integer">495851</id>
190
+ <filename>LICENSE</filename>
191
+ <description></description>
192
+ <uploaded_by>Test Suite Access</uploaded_by>
193
+ <uploaded_at type="datetime">2010/07/29 19:07:19 UTC</uploaded_at>
194
+ <url>http://www.pivotaltracker.com/resource/download/495851</url>
195
+ </attachment>
196
+ <attachment>
197
+ <id type="integer">495856</id>
198
+ <filename>LICENSE</filename>
199
+ <description></description>
200
+ <uploaded_by>Test Suite Access</uploaded_by>
201
+ <uploaded_at type="datetime">2010/07/29 19:09:27 UTC</uploaded_at>
202
+ <url>http://www.pivotaltracker.com/resource/download/495856</url>
203
+ </attachment>
204
+ <attachment>
205
+ <id type="integer">495858</id>
206
+ <filename>LICENSE</filename>
207
+ <description></description>
208
+ <uploaded_by>Test Suite Access</uploaded_by>
209
+ <uploaded_at type="datetime">2010/07/29 19:11:44 UTC</uploaded_at>
210
+ <url>http://www.pivotaltracker.com/resource/download/495858</url>
211
+ </attachment>
212
+ <attachment>
213
+ <id type="integer">495863</id>
214
+ <filename>LICENSE</filename>
215
+ <description></description>
216
+ <uploaded_by>Test Suite Access</uploaded_by>
217
+ <uploaded_at type="datetime">2010/07/29 19:13:06 UTC</uploaded_at>
218
+ <url>http://www.pivotaltracker.com/resource/download/495863</url>
219
+ </attachment>
220
+ </attachments>
221
+ </story>
222
+ <story>
223
+ <id type="integer">4490874</id>
224
+ <project_id type="integer">102622</project_id>
225
+ <story_type>feature</story_type>
226
+ <url>http://www.pivotaltracker.com/story/show/4490874</url>
227
+ <estimate type="integer">0</estimate>
228
+ <current_state>unstarted</current_state>
229
+ <description></description>
230
+ <name>Movable Story</name>
231
+ <requested_by>Test Suite Access</requested_by>
232
+ <created_at type="datetime">2010/07/29 18:12:31 UTC</created_at>
233
+ <updated_at type="datetime">2010/07/29 19:13:12 UTC</updated_at>
234
+ </story>
235
+ </stories>
236
+ </iteration>
237
+ </iterations>
@@ -0,0 +1,163 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <iterations type="array">
3
+ <iteration>
4
+ <id type="integer">4</id>
5
+ <number type="integer">4</number>
6
+ <start type="datetime">2010/08/02 05:00:00 UTC</start>
7
+ <finish type="datetime">2010/08/09 05:00:00 UTC</finish>
8
+ <stories type="array">
9
+ <story>
10
+ <id type="integer">4460038</id>
11
+ <project_id type="integer">102622</project_id>
12
+ <story_type>feature</story_type>
13
+ <url>http://www.pivotaltracker.com/story/show/4460038</url>
14
+ <estimate type="integer">1</estimate>
15
+ <current_state>unstarted</current_state>
16
+ <description>This is a story that has comments.</description>
17
+ <name>This is for comments</name>
18
+ <requested_by>Jon Mischo</requested_by>
19
+ <created_at type="datetime">2010/07/27 21:53:16 UTC</created_at>
20
+ <updated_at type="datetime">2010/07/27 22:20:48 UTC</updated_at>
21
+ <notes type="array">
22
+ <note>
23
+ <id type="integer">2111593</id>
24
+ <text>This is a comment...whee!</text>
25
+ <author>Jon</author>
26
+ <noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
27
+ </note>
28
+ <note>
29
+ <id type="integer">2128955</id>
30
+ <text>Test note</text>
31
+ <author>Test Suite Access</author>
32
+ <noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
33
+ </note>
34
+ <note>
35
+ <id type="integer">2128959</id>
36
+ <text>Test note</text>
37
+ <author>Test Suite Access</author>
38
+ <noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
39
+ </note>
40
+ <note>
41
+ <id type="integer">2129077</id>
42
+ <text>Test note</text>
43
+ <author>Test Suite Access</author>
44
+ <noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
45
+ </note>
46
+ <note>
47
+ <id type="integer">2129374</id>
48
+ <text>Test note</text>
49
+ <author>Test Suite Access</author>
50
+ <noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
51
+ </note>
52
+ </notes>
53
+ </story>
54
+ </stories>
55
+ </iteration>
56
+ <iteration>
57
+ <id type="integer">5</id>
58
+ <number type="integer">5</number>
59
+ <start type="datetime">2010/08/09 05:00:00 UTC</start>
60
+ <finish type="datetime">2010/08/16 05:00:00 UTC</finish>
61
+ <stories type="array">
62
+ <story>
63
+ <id type="integer">4460598</id>
64
+ <project_id type="integer">102622</project_id>
65
+ <story_type>feature</story_type>
66
+ <url>http://www.pivotaltracker.com/story/show/4460598</url>
67
+ <estimate type="integer">3</estimate>
68
+ <current_state>unstarted</current_state>
69
+ <description>This story has attachments.</description>
70
+ <name>Story with attachments</name>
71
+ <requested_by>Jon Mischo</requested_by>
72
+ <created_at type="datetime">2010/07/27 22:33:13 UTC</created_at>
73
+ <updated_at type="datetime">2010/07/27 22:33:28 UTC</updated_at>
74
+ <attachments type="array">
75
+ <attachment>
76
+ <id type="integer">491576</id>
77
+ <filename>LICENSE</filename>
78
+ <description></description>
79
+ <uploaded_by>Jon</uploaded_by>
80
+ <uploaded_at type="datetime">2010/07/27 22:34:23 UTC</uploaded_at>
81
+ <url>http://www.pivotaltracker.com/resource/download/491576</url>
82
+ </attachment>
83
+ <attachment>
84
+ <id type="integer">493019</id>
85
+ <filename>README.rdoc</filename>
86
+ <description>README file from api gem</description>
87
+ <uploaded_by>Jon</uploaded_by>
88
+ <uploaded_at type="datetime">2010/07/28 15:16:18 UTC</uploaded_at>
89
+ <url>http://www.pivotaltracker.com/resource/download/493019</url>
90
+ </attachment>
91
+ </attachments>
92
+ </story>
93
+ </stories>
94
+ </iteration>
95
+ <iteration>
96
+ <id type="integer">6</id>
97
+ <number type="integer">6</number>
98
+ <start type="datetime">2010/08/16 05:00:00 UTC</start>
99
+ <finish type="datetime">2010/08/23 05:00:00 UTC</finish>
100
+ <stories type="array">
101
+ <story>
102
+ <id type="integer">4473735</id>
103
+ <project_id type="integer">102622</project_id>
104
+ <story_type>feature</story_type>
105
+ <url>http://www.pivotaltracker.com/story/show/4473735</url>
106
+ <estimate type="integer">1</estimate>
107
+ <current_state>unstarted</current_state>
108
+ <description></description>
109
+ <name>Attachment upload test story</name>
110
+ <requested_by>Jon</requested_by>
111
+ <created_at type="datetime">2010/07/28 18:17:33 UTC</created_at>
112
+ <updated_at type="datetime">2010/07/28 18:17:44 UTC</updated_at>
113
+ <attachments type="array">
114
+ <attachment>
115
+ <id type="integer">495851</id>
116
+ <filename>LICENSE</filename>
117
+ <description></description>
118
+ <uploaded_by>Test Suite Access</uploaded_by>
119
+ <uploaded_at type="datetime">2010/07/29 19:07:19 UTC</uploaded_at>
120
+ <url>http://www.pivotaltracker.com/resource/download/495851</url>
121
+ </attachment>
122
+ <attachment>
123
+ <id type="integer">495856</id>
124
+ <filename>LICENSE</filename>
125
+ <description></description>
126
+ <uploaded_by>Test Suite Access</uploaded_by>
127
+ <uploaded_at type="datetime">2010/07/29 19:09:27 UTC</uploaded_at>
128
+ <url>http://www.pivotaltracker.com/resource/download/495856</url>
129
+ </attachment>
130
+ <attachment>
131
+ <id type="integer">495858</id>
132
+ <filename>LICENSE</filename>
133
+ <description></description>
134
+ <uploaded_by>Test Suite Access</uploaded_by>
135
+ <uploaded_at type="datetime">2010/07/29 19:11:44 UTC</uploaded_at>
136
+ <url>http://www.pivotaltracker.com/resource/download/495858</url>
137
+ </attachment>
138
+ <attachment>
139
+ <id type="integer">495863</id>
140
+ <filename>LICENSE</filename>
141
+ <description></description>
142
+ <uploaded_by>Test Suite Access</uploaded_by>
143
+ <uploaded_at type="datetime">2010/07/29 19:13:06 UTC</uploaded_at>
144
+ <url>http://www.pivotaltracker.com/resource/download/495863</url>
145
+ </attachment>
146
+ </attachments>
147
+ </story>
148
+ <story>
149
+ <id type="integer">4490874</id>
150
+ <project_id type="integer">102622</project_id>
151
+ <story_type>feature</story_type>
152
+ <url>http://www.pivotaltracker.com/story/show/4490874</url>
153
+ <estimate type="integer">0</estimate>
154
+ <current_state>unstarted</current_state>
155
+ <description></description>
156
+ <name>Movable Story</name>
157
+ <requested_by>Test Suite Access</requested_by>
158
+ <created_at type="datetime">2010/07/29 18:12:31 UTC</created_at>
159
+ <updated_at type="datetime">2010/07/29 19:13:12 UTC</updated_at>
160
+ </story>
161
+ </stories>
162
+ </iteration>
163
+ </iterations>
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <iterations type="array">
3
+ <iteration>
4
+ <id type="integer">3</id>
5
+ <number type="integer">3</number>
6
+ <start type="datetime">2010/07/26 05:00:00 UTC</start>
7
+ <finish type="datetime">2010/08/02 05:00:00 UTC</finish>
8
+ <stories type="array">
9
+ <story>
10
+ <id type="integer">4459994</id>
11
+ <project_id type="integer">102622</project_id>
12
+ <story_type>feature</story_type>
13
+ <url>http://www.pivotaltracker.com/story/show/4459994</url>
14
+ <estimate type="integer">2</estimate>
15
+ <current_state>unstarted</current_state>
16
+ <description>Generic description</description>
17
+ <name>Tasks Test</name>
18
+ <requested_by>Jon Mischo</requested_by>
19
+ <created_at type="datetime">2010/07/27 21:51:01 UTC</created_at>
20
+ <updated_at type="datetime">2010/07/27 22:20:46 UTC</updated_at>
21
+ <tasks type="array">
22
+ <task>
23
+ <id type="integer">468113</id>
24
+ <description>Task number 1</description>
25
+ <position>1</position>
26
+ <complete>false</complete>
27
+ <created_at type="datetime">2010/07/27 21:51:28 UTC</created_at>
28
+ </task>
29
+ <task>
30
+ <id type="integer">468114</id>
31
+ <description>Number 2 Task</description>
32
+ <position>2</position>
33
+ <complete>false</complete>
34
+ <created_at type="datetime">2010/07/27 21:51:32 UTC</created_at>
35
+ </task>
36
+ <task>
37
+ <id type="integer">468117</id>
38
+ <description>3rd task is a charm</description>
39
+ <position>3</position>
40
+ <complete>true</complete>
41
+ <created_at type="datetime">2010/07/27 21:51:42 UTC</created_at>
42
+ </task>
43
+ </tasks>
44
+ </story>
45
+ </stories>
46
+ </iteration>
47
+ </iterations>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <iterations type="array">
3
+ <iteration>
4
+ <id type="integer">1</id>
5
+ <number type="integer">1</number>
6
+ <start type="datetime">2010/07/12 05:00:00 UTC</start>
7
+ <finish type="datetime">2010/07/19 05:00:00 UTC</finish>
8
+ <stories type="array">
9
+ <story>
10
+ <id type="integer">4460116</id>
11
+ <project_id type="integer">102622</project_id>
12
+ <story_type>feature</story_type>
13
+ <url>http://www.pivotaltracker.com/story/show/4460116</url>
14
+ <estimate type="integer">0</estimate>
15
+ <current_state>accepted</current_state>
16
+ <description>This is a story that's finished.</description>
17
+ <name>Old, accepted story</name>
18
+ <requested_by>Jon Mischo</requested_by>
19
+ <created_at type="datetime">2010/07/27 21:58:28 UTC</created_at>
20
+ <updated_at type="datetime">2010/07/27 22:21:17 UTC</updated_at>
21
+ <accepted_at type="datetime">2010/07/18 17:00:00 UTC</accepted_at>
22
+ </story>
23
+ </stories>
24
+ </iteration>
25
+ <iteration>
26
+ <id type="integer">2</id>
27
+ <number type="integer">2</number>
28
+ <start type="datetime">2010/07/19 05:00:00 UTC</start>
29
+ <finish type="datetime">2010/07/26 05:00:00 UTC</finish>
30
+ <stories type="array">
31
+ </stories>
32
+ </iteration>
33
+ </iterations>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <memberships type="array">
3
+ <membership>
4
+ <id>331822</id>
5
+ <person>
6
+ <email>jmischo@sittercity.com</email>
7
+ <name>Jon</name>
8
+ <initials>JM</initials>
9
+ </person>
10
+ <role>Owner</role>
11
+ <project>
12
+ <id>102622</id>
13
+ <name>Pivotal Tracker API Gem</name>
14
+ </project>
15
+ </membership>
16
+ <membership>
17
+ <id>331823</id>
18
+ <person>
19
+ <email>jmischo@quagility.com</email>
20
+ <name>Jon Mischo</name>
21
+ <initials>JM</initials>
22
+ </person>
23
+ <role>Owner</role>
24
+ <project>
25
+ <id>102622</id>
26
+ <name>Pivotal Tracker API Gem</name>
27
+ </project>
28
+ </membership>
29
+ <membership>
30
+ <id>331832</id>
31
+ <person>
32
+ <email>pivotal-tracker-api-gem@quagility.com</email>
33
+ <name>Test Suite Access</name>
34
+ <initials>TEST</initials>
35
+ </person>
36
+ <role>Member</role>
37
+ <project>
38
+ <id>102622</id>
39
+ <name>Pivotal Tracker API Gem</name>
40
+ </project>
41
+ </membership>
42
+ </memberships>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <notes type="array">
3
+ <note>
4
+ <id type="integer">2111593</id>
5
+ <text>This is a comment...whee!</text>
6
+ <author>Jon</author>
7
+ <noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
8
+ </note>
9
+ <note>
10
+ <id type="integer">2128955</id>
11
+ <text>Test note</text>
12
+ <author>Test Suite Access</author>
13
+ <noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
14
+ </note>
15
+ <note>
16
+ <id type="integer">2128959</id>
17
+ <text>Test note</text>
18
+ <author>Test Suite Access</author>
19
+ <noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
20
+ </note>
21
+ <note>
22
+ <id type="integer">2129077</id>
23
+ <text>Test note</text>
24
+ <author>Test Suite Access</author>
25
+ <noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
26
+ </note>
27
+ <note>
28
+ <id type="integer">2129374</id>
29
+ <text>Test note</text>
30
+ <author>Test Suite Access</author>
31
+ <noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
32
+ </note>
33
+ </notes>
@@ -0,0 +1,51 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project>
3
+ <id>102622</id>
4
+ <name>Pivotal Tracker API Gem</name>
5
+ <iteration_length type="integer">1</iteration_length>
6
+ <week_start_day>Monday</week_start_day>
7
+ <point_scale>0,1,2,3</point_scale>
8
+ <account>Jon</account>
9
+ <velocity_scheme>Average of 3 iterations</velocity_scheme>
10
+ <current_velocity>2</current_velocity>
11
+ <initial_velocity>2</initial_velocity>
12
+ <number_of_done_iterations_to_show>12</number_of_done_iterations_to_show>
13
+ <labels></labels>
14
+ <last_activity_at type="datetime">2010/07/29 19:13:13 UTC</last_activity_at>
15
+ <allow_attachments>true</allow_attachments>
16
+ <public>true</public>
17
+ <use_https>false</use_https>
18
+ <bugs_and_chores_are_estimatable>true</bugs_and_chores_are_estimatable>
19
+ <commit_mode>true</commit_mode>
20
+ <memberships>
21
+ <membership>
22
+ <id>331822</id>
23
+ <person>
24
+ <email>jmischo@sittercity.com</email>
25
+ <name>Jon</name>
26
+ <initials>JM</initials>
27
+ </person>
28
+ <role>Owner</role>
29
+ </membership>
30
+ <membership>
31
+ <id>331823</id>
32
+ <person>
33
+ <email>jmischo@quagility.com</email>
34
+ <name>Jon Mischo</name>
35
+ <initials>JM</initials>
36
+ </person>
37
+ <role>Owner</role>
38
+ </membership>
39
+ <membership>
40
+ <id>331832</id>
41
+ <person>
42
+ <email>pivotal-tracker-api-gem@quagility.com</email>
43
+ <name>Test Suite Access</name>
44
+ <initials>TEST</initials>
45
+ </person>
46
+ <role>Member</role>
47
+ </membership>
48
+ </memberships>
49
+ <integrations>
50
+ </integrations>
51
+ </project>