pivotal-tracker 0.0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +16 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +60 -0
  5. data/Rakefile +46 -0
  6. data/VERSION +1 -0
  7. data/lib/pivotal-tracker/activity.rb +45 -0
  8. data/lib/pivotal-tracker/client.rb +34 -0
  9. data/lib/pivotal-tracker/extensions.rb +11 -0
  10. data/lib/pivotal-tracker/iteration.rb +20 -0
  11. data/lib/pivotal-tracker/membership.rb +20 -0
  12. data/lib/pivotal-tracker/note.rb +17 -0
  13. data/lib/pivotal-tracker/project.rb +42 -0
  14. data/lib/pivotal-tracker/proxy.rb +65 -0
  15. data/lib/pivotal-tracker/story.rb +87 -0
  16. data/lib/pivotal-tracker/task.rb +48 -0
  17. data/lib/pivotal-tracker.rb +40 -0
  18. data/lib/pivotal_tracker.rb +2 -0
  19. data/pivotal-tracker.gemspec +95 -0
  20. data/spec/fixtures/activity.xml +176 -0
  21. data/spec/fixtures/created_story.xml +14 -0
  22. data/spec/fixtures/memberships.xml +29 -0
  23. data/spec/fixtures/project.xml +42 -0
  24. data/spec/fixtures/project_activity.xml +170 -0
  25. data/spec/fixtures/projects.xml +396 -0
  26. data/spec/fixtures/stale_fish.yml +58 -0
  27. data/spec/fixtures/stories.xml +66 -0
  28. data/spec/fixtures/tasks.xml +24 -0
  29. data/spec/spec.opts +1 -0
  30. data/spec/spec_helper.rb +27 -0
  31. data/spec/support/stale_fish_fixtures.rb +43 -0
  32. data/spec/unit/pivotal-tracker/activity_spec.rb +23 -0
  33. data/spec/unit/pivotal-tracker/iteration_spec.rb +8 -0
  34. data/spec/unit/pivotal-tracker/membership_spec.rb +20 -0
  35. data/spec/unit/pivotal-tracker/project_spec.rb +47 -0
  36. data/spec/unit/pivotal-tracker/story_spec.rb +27 -0
  37. data/spec/unit/pivotal-tracker/task_spec.rb +21 -0
  38. metadata +162 -0
@@ -0,0 +1,95 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{pivotal-tracker}
8
+ s.version = "0.0.9.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Justin Smestad", "Josh Nichols", "Terence Lee"]
12
+ s.date = %q{2010-03-30}
13
+ s.email = %q{justin.smestad@gmail.com}
14
+ s.extra_rdoc_files = [
15
+ "LICENSE",
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ ".gitignore",
20
+ "Gemfile",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "lib/pivotal-tracker.rb",
26
+ "lib/pivotal-tracker/activity.rb",
27
+ "lib/pivotal-tracker/client.rb",
28
+ "lib/pivotal-tracker/extensions.rb",
29
+ "lib/pivotal-tracker/iteration.rb",
30
+ "lib/pivotal-tracker/membership.rb",
31
+ "lib/pivotal-tracker/note.rb",
32
+ "lib/pivotal-tracker/project.rb",
33
+ "lib/pivotal-tracker/proxy.rb",
34
+ "lib/pivotal-tracker/story.rb",
35
+ "lib/pivotal-tracker/task.rb",
36
+ "lib/pivotal_tracker.rb",
37
+ "pivotal-tracker.gemspec",
38
+ "spec/fixtures/activity.xml",
39
+ "spec/fixtures/created_story.xml",
40
+ "spec/fixtures/memberships.xml",
41
+ "spec/fixtures/project.xml",
42
+ "spec/fixtures/project_activity.xml",
43
+ "spec/fixtures/projects.xml",
44
+ "spec/fixtures/stale_fish.yml",
45
+ "spec/fixtures/stories.xml",
46
+ "spec/fixtures/tasks.xml",
47
+ "spec/spec.opts",
48
+ "spec/spec_helper.rb",
49
+ "spec/support/stale_fish_fixtures.rb",
50
+ "spec/unit/pivotal-tracker/activity_spec.rb",
51
+ "spec/unit/pivotal-tracker/iteration_spec.rb",
52
+ "spec/unit/pivotal-tracker/membership_spec.rb",
53
+ "spec/unit/pivotal-tracker/project_spec.rb",
54
+ "spec/unit/pivotal-tracker/story_spec.rb",
55
+ "spec/unit/pivotal-tracker/task_spec.rb"
56
+ ]
57
+ s.homepage = %q{http://github.com/jsmestad/pivotal-tracker}
58
+ s.rdoc_options = ["--charset=UTF-8"]
59
+ s.require_paths = ["lib"]
60
+ s.rubygems_version = %q{1.3.6}
61
+ s.summary = %q{Ruby wrapper for the Pivotal Tracker API}
62
+ s.test_files = [
63
+ "spec/spec_helper.rb",
64
+ "spec/support/stale_fish_fixtures.rb",
65
+ "spec/unit/pivotal-tracker/activity_spec.rb",
66
+ "spec/unit/pivotal-tracker/iteration_spec.rb",
67
+ "spec/unit/pivotal-tracker/membership_spec.rb",
68
+ "spec/unit/pivotal-tracker/project_spec.rb",
69
+ "spec/unit/pivotal-tracker/story_spec.rb",
70
+ "spec/unit/pivotal-tracker/task_spec.rb"
71
+ ]
72
+
73
+ if s.respond_to? :specification_version then
74
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
75
+ s.specification_version = 3
76
+
77
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
78
+ s.add_runtime_dependency(%q<rest-client>, ["~> 1.4.1"])
79
+ s.add_runtime_dependency(%q<happymapper>, [">= 0.2.4"])
80
+ s.add_runtime_dependency(%q<builder>, [">= 0"])
81
+ s.add_runtime_dependency(%q<nokogiri>, ["~> 1.4.1"])
82
+ else
83
+ s.add_dependency(%q<rest-client>, ["~> 1.4.1"])
84
+ s.add_dependency(%q<happymapper>, [">= 0.2.4"])
85
+ s.add_dependency(%q<builder>, [">= 0"])
86
+ s.add_dependency(%q<nokogiri>, ["~> 1.4.1"])
87
+ end
88
+ else
89
+ s.add_dependency(%q<rest-client>, ["~> 1.4.1"])
90
+ s.add_dependency(%q<happymapper>, [">= 0.2.4"])
91
+ s.add_dependency(%q<builder>, [">= 0"])
92
+ s.add_dependency(%q<nokogiri>, ["~> 1.4.1"])
93
+ end
94
+ end
95
+
@@ -0,0 +1,176 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activities type="array">
3
+ <activity>
4
+ <id type="integer">13699571</id>
5
+ <version type="integer">18</version>
6
+ <event_type>story_update</event_type>
7
+ <occurred_at type="datetime">2010/02/25 11:55:44 MST</occurred_at>
8
+ <author>Justin Smestad</author>
9
+ <project_id type="integer">59022</project_id>
10
+ <description>Justin Smestad edited &quot;some gem&quot;</description>
11
+ <stories>
12
+ <story>
13
+ <id type="integer">2524689</id>
14
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524689</url>
15
+ <labels>test_dependent</labels>
16
+ </story>
17
+ </stories>
18
+ </activity>
19
+ <activity>
20
+ <id type="integer">13699560</id>
21
+ <version type="integer">17</version>
22
+ <event_type>story_update</event_type>
23
+ <occurred_at type="datetime">2010/02/25 11:55:40 MST</occurred_at>
24
+ <author>Justin Smestad</author>
25
+ <project_id type="integer">59022</project_id>
26
+ <description>Justin Smestad edited &quot;another gem&quot;</description>
27
+ <stories>
28
+ <story>
29
+ <id type="integer">2524690</id>
30
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524690</url>
31
+ <labels>test_dependent</labels>
32
+ </story>
33
+ </stories>
34
+ </activity>
35
+ <activity>
36
+ <id type="integer">13699547</id>
37
+ <version type="integer">16</version>
38
+ <event_type>story_update</event_type>
39
+ <occurred_at type="datetime">2010/02/25 11:55:30 MST</occurred_at>
40
+ <author>Justin Smestad</author>
41
+ <project_id type="integer">59022</project_id>
42
+ <description>Justin Smestad edited &quot;Tasks Test&quot;</description>
43
+ <stories>
44
+ <story>
45
+ <id type="integer">2606200</id>
46
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
47
+ <current_state>unstarted</current_state>
48
+ </story>
49
+ </stories>
50
+ </activity>
51
+ <activity>
52
+ <id type="integer">13699540</id>
53
+ <version type="integer">15</version>
54
+ <event_type>story_update</event_type>
55
+ <occurred_at type="datetime">2010/02/25 11:55:22 MST</occurred_at>
56
+ <author>Justin Smestad</author>
57
+ <project_id type="integer">59022</project_id>
58
+ <description>Justin Smestad started &quot;Tasks Test&quot;</description>
59
+ <stories>
60
+ <story>
61
+ <id type="integer">2606200</id>
62
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
63
+ <current_state>started</current_state>
64
+ </story>
65
+ </stories>
66
+ </activity>
67
+ <activity>
68
+ <id type="integer">13699533</id>
69
+ <version type="integer">14</version>
70
+ <event_type>story_update</event_type>
71
+ <occurred_at type="datetime">2010/02/25 11:55:19 MST</occurred_at>
72
+ <author>Justin Smestad</author>
73
+ <project_id type="integer">59022</project_id>
74
+ <description>Justin Smestad edited &quot;Tasks Test&quot;</description>
75
+ <stories>
76
+ <story>
77
+ <id type="integer">2606200</id>
78
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
79
+ <current_state>unstarted</current_state>
80
+ </story>
81
+ </stories>
82
+ </activity>
83
+ <activity>
84
+ <id type="integer">13699498</id>
85
+ <version type="integer">9</version>
86
+ <event_type>story_create</event_type>
87
+ <occurred_at type="datetime">2010/02/25 11:54:51 MST</occurred_at>
88
+ <author>Justin Smestad</author>
89
+ <project_id type="integer">59022</project_id>
90
+ <description>Justin Smestad added &quot;Tasks Test&quot;</description>
91
+ <stories>
92
+ <story>
93
+ <id type="integer">2606200</id>
94
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
95
+ <name>Tasks Test</name>
96
+ <story_type>feature</story_type>
97
+ <description>This is just some description.</description>
98
+ <estimate type="integer">2</estimate>
99
+ <labels>test_dependent</labels>
100
+ <current_state>unscheduled</current_state>
101
+ <owned_by>Terence Lee</owned_by>
102
+ <requested_by>Justin Smestad</requested_by>
103
+ </story>
104
+ </stories>
105
+ </activity>
106
+ <activity>
107
+ <id type="integer">13692763</id>
108
+ <version type="integer">16482</version>
109
+ <event_type>story_create</event_type>
110
+ <occurred_at type="datetime">2010/02/25 10:25:08 MST</occurred_at>
111
+ <author>Michael Tully</author>
112
+ <project_id type="integer">4165</project_id>
113
+ <description>Michael Tully added &quot;Importing Tender stories into Tracker&quot;</description>
114
+ <stories>
115
+ <story>
116
+ <id type="integer">2605110</id>
117
+ <url>http://www.pivotaltracker.com/services/v3/projects/4165/stories/2605110</url>
118
+ <name>Importing Tender stories into Tracker</name>
119
+ <story_type>feature</story_type>
120
+ <description>The Dealer Services team are wanting for stories received in Tender to be imported into Tracker to aid with client visibility</description>
121
+ <current_state>unscheduled</current_state>
122
+ </story>
123
+ </stories>
124
+ </activity>
125
+ <activity>
126
+ <id type="integer">13688278</id>
127
+ <version type="integer">16480</version>
128
+ <event_type>story_update</event_type>
129
+ <occurred_at type="datetime">2010/02/25 09:26:39 MST</occurred_at>
130
+ <author>Justin Smestad</author>
131
+ <project_id type="integer">4165</project_id>
132
+ <description>Justin Smestad started &quot;Send emails on rejection/submission for approval&quot;</description>
133
+ <stories>
134
+ <story>
135
+ <id type="integer">2499055</id>
136
+ <url>http://www.pivotaltracker.com/services/v3/projects/4165/stories/2499055</url>
137
+ <current_state>started</current_state>
138
+ </story>
139
+ </stories>
140
+ </activity>
141
+ <activity>
142
+ <id type="integer">13662270</id>
143
+ <version type="integer">16479</version>
144
+ <event_type>story_create</event_type>
145
+ <occurred_at type="datetime">2010/02/24 22:55:11 MST</occurred_at>
146
+ <author>Jay Zeschin</author>
147
+ <project_id type="integer">4165</project_id>
148
+ <description>Jay Zeschin added &quot;Migrate queue_daemon functionality to DJ/resque&quot;</description>
149
+ <stories>
150
+ <story>
151
+ <id type="integer">2599397</id>
152
+ <url>http://www.pivotaltracker.com/services/v3/projects/4165/stories/2599397</url>
153
+ <name>Migrate queue_daemon functionality to DJ/resque</name>
154
+ <story_type>feature</story_type>
155
+ <current_state>unscheduled</current_state>
156
+ </story>
157
+ </stories>
158
+ </activity>
159
+ <activity>
160
+ <id type="integer">13650970</id>
161
+ <version type="integer">16478</version>
162
+ <event_type>story_update</event_type>
163
+ <occurred_at type="datetime">2010/02/24 16:59:35 MST</occurred_at>
164
+ <author>Justin Smestad</author>
165
+ <project_id type="integer">4165</project_id>
166
+ <description>Justin Smestad accepted &quot;Embed proper offer details URL's for each dealer&quot;</description>
167
+ <stories>
168
+ <story>
169
+ <id type="integer">2455221</id>
170
+ <url>http://www.pivotaltracker.com/services/v3/projects/4165/stories/2455221</url>
171
+ <accepted_at type="datetime">2010/02/24 23:59:35 UTC</accepted_at>
172
+ <current_state>accepted</current_state>
173
+ </story>
174
+ </stories>
175
+ </activity>
176
+ </activities>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <story>
3
+ <id type="integer">2746766</id>
4
+ <project_id type="integer">59022</project_id>
5
+ <story_type>feature</story_type>
6
+ <url>http://www.pivotaltracker.com/story/show/2746766</url>
7
+ <estimate type="integer">-1</estimate>
8
+ <current_state>unscheduled</current_state>
9
+ <description></description>
10
+ <name>Create stuff</name>
11
+ <requested_by>Justin Smestad</requested_by>
12
+ <created_at type="datetime">2010/03/10 11:40:33 MST</created_at>
13
+ <updated_at type="datetime">2010/03/10 11:40:33 MST</updated_at>
14
+ </story>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <memberships type="array">
3
+ <membership>
4
+ <id>207328</id>
5
+ <person>
6
+ <email>justin.smestad@factorylabs.com</email>
7
+ <name>Justin Smestad</name>
8
+ <initials>JS</initials>
9
+ </person>
10
+ <role>Owner</role>
11
+ <project>
12
+ <id>59022</id>
13
+ <name>pivotal-tracker gem</name>
14
+ </project>
15
+ </membership>
16
+ <membership>
17
+ <id>207330</id>
18
+ <person>
19
+ <email>hone02@gmail.com</email>
20
+ <name>Terence Lee</name>
21
+ <initials>TL</initials>
22
+ </person>
23
+ <role>Owner</role>
24
+ <project>
25
+ <id>59022</id>
26
+ <name>pivotal-tracker gem</name>
27
+ </project>
28
+ </membership>
29
+ </memberships>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project>
3
+ <id>59022</id>
4
+ <name>pivotal-tracker 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>Justin Smestad</account>
9
+ <velocity_scheme>Average of 3 iterations</velocity_scheme>
10
+ <current_velocity>10</current_velocity>
11
+ <initial_velocity>10</initial_velocity>
12
+ <number_of_done_iterations_to_show>12</number_of_done_iterations_to_show>
13
+ <labels>test_dependent</labels>
14
+ <last_activity_at type="datetime">2010/02/25 11:55:44 MST</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>false</bugs_and_chores_are_estimatable>
19
+ <commit_mode>false</commit_mode>
20
+ <memberships>
21
+ <membership>
22
+ <id>207328</id>
23
+ <person>
24
+ <email>justin.smestad@factorylabs.com</email>
25
+ <name>Justin Smestad</name>
26
+ <initials>JS</initials>
27
+ </person>
28
+ <role>Owner</role>
29
+ </membership>
30
+ <membership>
31
+ <id>207330</id>
32
+ <person>
33
+ <email>hone02@gmail.com</email>
34
+ <name>Terence Lee</name>
35
+ <initials>TL</initials>
36
+ </person>
37
+ <role>Owner</role>
38
+ </membership>
39
+ </memberships>
40
+ <integrations>
41
+ </integrations>
42
+ </project>
@@ -0,0 +1,170 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activities type="array">
3
+ <activity>
4
+ <id type="integer">13699571</id>
5
+ <version type="integer">18</version>
6
+ <event_type>story_update</event_type>
7
+ <occurred_at type="datetime">2010/02/25 11:55:44 MST</occurred_at>
8
+ <author>Justin Smestad</author>
9
+ <project_id type="integer">59022</project_id>
10
+ <description>Justin Smestad edited &quot;some gem&quot;</description>
11
+ <stories>
12
+ <story>
13
+ <id type="integer">2524689</id>
14
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524689</url>
15
+ <labels>test_dependent</labels>
16
+ </story>
17
+ </stories>
18
+ </activity>
19
+ <activity>
20
+ <id type="integer">13699560</id>
21
+ <version type="integer">17</version>
22
+ <event_type>story_update</event_type>
23
+ <occurred_at type="datetime">2010/02/25 11:55:40 MST</occurred_at>
24
+ <author>Justin Smestad</author>
25
+ <project_id type="integer">59022</project_id>
26
+ <description>Justin Smestad edited &quot;another gem&quot;</description>
27
+ <stories>
28
+ <story>
29
+ <id type="integer">2524690</id>
30
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524690</url>
31
+ <labels>test_dependent</labels>
32
+ </story>
33
+ </stories>
34
+ </activity>
35
+ <activity>
36
+ <id type="integer">13699547</id>
37
+ <version type="integer">16</version>
38
+ <event_type>story_update</event_type>
39
+ <occurred_at type="datetime">2010/02/25 11:55:30 MST</occurred_at>
40
+ <author>Justin Smestad</author>
41
+ <project_id type="integer">59022</project_id>
42
+ <description>Justin Smestad edited &quot;Tasks Test&quot;</description>
43
+ <stories>
44
+ <story>
45
+ <id type="integer">2606200</id>
46
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
47
+ <current_state>unstarted</current_state>
48
+ </story>
49
+ </stories>
50
+ </activity>
51
+ <activity>
52
+ <id type="integer">13699540</id>
53
+ <version type="integer">15</version>
54
+ <event_type>story_update</event_type>
55
+ <occurred_at type="datetime">2010/02/25 11:55:22 MST</occurred_at>
56
+ <author>Justin Smestad</author>
57
+ <project_id type="integer">59022</project_id>
58
+ <description>Justin Smestad started &quot;Tasks Test&quot;</description>
59
+ <stories>
60
+ <story>
61
+ <id type="integer">2606200</id>
62
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
63
+ <current_state>started</current_state>
64
+ </story>
65
+ </stories>
66
+ </activity>
67
+ <activity>
68
+ <id type="integer">13699533</id>
69
+ <version type="integer">14</version>
70
+ <event_type>story_update</event_type>
71
+ <occurred_at type="datetime">2010/02/25 11:55:19 MST</occurred_at>
72
+ <author>Justin Smestad</author>
73
+ <project_id type="integer">59022</project_id>
74
+ <description>Justin Smestad edited &quot;Tasks Test&quot;</description>
75
+ <stories>
76
+ <story>
77
+ <id type="integer">2606200</id>
78
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
79
+ <current_state>unstarted</current_state>
80
+ </story>
81
+ </stories>
82
+ </activity>
83
+ <activity>
84
+ <id type="integer">13699498</id>
85
+ <version type="integer">9</version>
86
+ <event_type>story_create</event_type>
87
+ <occurred_at type="datetime">2010/02/25 11:54:51 MST</occurred_at>
88
+ <author>Justin Smestad</author>
89
+ <project_id type="integer">59022</project_id>
90
+ <description>Justin Smestad added &quot;Tasks Test&quot;</description>
91
+ <stories>
92
+ <story>
93
+ <id type="integer">2606200</id>
94
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2606200</url>
95
+ <name>Tasks Test</name>
96
+ <story_type>feature</story_type>
97
+ <description>This is just some description.</description>
98
+ <estimate type="integer">2</estimate>
99
+ <labels>test_dependent</labels>
100
+ <current_state>unscheduled</current_state>
101
+ <owned_by>Terence Lee</owned_by>
102
+ <requested_by>Justin Smestad</requested_by>
103
+ </story>
104
+ </stories>
105
+ </activity>
106
+ <activity>
107
+ <id type="integer">13254659</id>
108
+ <version type="integer">7</version>
109
+ <event_type>story_update</event_type>
110
+ <occurred_at type="datetime">2010/02/17 15:43:07 MST</occurred_at>
111
+ <author>Justin Smestad</author>
112
+ <project_id type="integer">59022</project_id>
113
+ <description>Justin Smestad estimated &quot;another gem&quot; as 3 points</description>
114
+ <stories>
115
+ <story>
116
+ <id type="integer">2524690</id>
117
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524690</url>
118
+ <estimate type="integer">3</estimate>
119
+ </story>
120
+ </stories>
121
+ </activity>
122
+ <activity>
123
+ <id type="integer">13254656</id>
124
+ <version type="integer">6</version>
125
+ <event_type>story_update</event_type>
126
+ <occurred_at type="datetime">2010/02/17 15:43:06 MST</occurred_at>
127
+ <author>Justin Smestad</author>
128
+ <project_id type="integer">59022</project_id>
129
+ <description>Justin Smestad estimated &quot;some gem&quot; as 2 points</description>
130
+ <stories>
131
+ <story>
132
+ <id type="integer">2524689</id>
133
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524689</url>
134
+ <estimate type="integer">2</estimate>
135
+ </story>
136
+ </stories>
137
+ </activity>
138
+ <activity>
139
+ <id type="integer">13254648</id>
140
+ <version type="integer">5</version>
141
+ <event_type>story_update</event_type>
142
+ <occurred_at type="datetime">2010/02/17 15:43:01 MST</occurred_at>
143
+ <author>Justin Smestad</author>
144
+ <project_id type="integer">59022</project_id>
145
+ <description>Justin Smestad edited &quot;some gem&quot;</description>
146
+ <stories>
147
+ <story>
148
+ <id type="integer">2524689</id>
149
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524689</url>
150
+ <current_state>unstarted</current_state>
151
+ </story>
152
+ </stories>
153
+ </activity>
154
+ <activity>
155
+ <id type="integer">13254646</id>
156
+ <version type="integer">4</version>
157
+ <event_type>story_update</event_type>
158
+ <occurred_at type="datetime">2010/02/17 15:43:00 MST</occurred_at>
159
+ <author>Justin Smestad</author>
160
+ <project_id type="integer">59022</project_id>
161
+ <description>Justin Smestad edited &quot;another gem&quot;</description>
162
+ <stories>
163
+ <story>
164
+ <id type="integer">2524690</id>
165
+ <url>http://www.pivotaltracker.com/services/v3/projects/59022/stories/2524690</url>
166
+ <current_state>unstarted</current_state>
167
+ </story>
168
+ </stories>
169
+ </activity>
170
+ </activities>