branston 0.4.2 → 0.4.3

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 (61) hide show
  1. data/README.rdoc +44 -16
  2. data/bin/branston +15 -0
  3. data/lib/branston/app/controllers/application_controller.rb +17 -2
  4. data/lib/branston/app/controllers/iterations_controller.rb +15 -0
  5. data/lib/branston/app/controllers/outcomes_controller.rb +14 -0
  6. data/lib/branston/app/controllers/preconditions_controller.rb +14 -0
  7. data/lib/branston/app/controllers/releases_controller.rb +14 -0
  8. data/lib/branston/app/controllers/scenarios_controller.rb +14 -0
  9. data/lib/branston/app/controllers/sessions_controller.rb +14 -0
  10. data/lib/branston/app/controllers/stories_controller.rb +15 -44
  11. data/lib/branston/app/controllers/user_roles_controller.rb +14 -0
  12. data/lib/branston/app/controllers/users_controller.rb +14 -0
  13. data/lib/branston/app/models/iteration.rb +16 -0
  14. data/lib/branston/app/models/outcome.rb +14 -0
  15. data/lib/branston/app/models/participation.rb +14 -0
  16. data/lib/branston/app/models/precondition.rb +14 -0
  17. data/lib/branston/app/models/release.rb +18 -3
  18. data/lib/branston/app/models/scenario.rb +14 -0
  19. data/lib/branston/app/models/story.rb +24 -10
  20. data/lib/branston/app/models/user.rb +18 -3
  21. data/lib/branston/app/models/user_role.rb +14 -0
  22. data/lib/branston/app/views/layouts/_footer.html.erb +3 -2
  23. data/lib/branston/coverage/app-controllers-application_controller_rb.html +105 -15
  24. data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +216 -108
  25. data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +200 -104
  26. data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +202 -154
  27. data/lib/branston/coverage/app-controllers-releases_controller_rb.html +190 -94
  28. data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +213 -105
  29. data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +146 -44
  30. data/lib/branston/coverage/app-controllers-stories_controller_rb.html +328 -112
  31. data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +208 -88
  32. data/lib/branston/coverage/app-controllers-users_controller_rb.html +125 -29
  33. data/lib/branston/coverage/app-helpers-application_helper_rb.html +25 -7
  34. data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +238 -10
  35. data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +1 -1
  36. data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +1 -1
  37. data/lib/branston/coverage/app-helpers-releases_helper_rb.html +1 -1
  38. data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +1 -1
  39. data/lib/branston/coverage/app-helpers-stories_helper_rb.html +1 -1
  40. data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +1 -1
  41. data/lib/branston/coverage/app-models-iteration_rb.html +192 -24
  42. data/lib/branston/coverage/app-models-outcome_rb.html +102 -18
  43. data/lib/branston/coverage/app-models-participation_rb.html +93 -9
  44. data/lib/branston/coverage/app-models-precondition_rb.html +107 -17
  45. data/lib/branston/coverage/app-models-release_rb.html +99 -9
  46. data/lib/branston/coverage/app-models-scenario_rb.html +100 -16
  47. data/lib/branston/coverage/app-models-story_rb.html +354 -24
  48. data/lib/branston/coverage/app-models-user_rb.html +173 -59
  49. data/lib/branston/coverage/app-models-user_role_rb.html +93 -9
  50. data/lib/branston/coverage/index.html +132 -116
  51. data/lib/branston/coverage/lib-client_rb.html +537 -0
  52. data/lib/branston/coverage/lib-faker_extras_rb.html +1 -1
  53. data/lib/branston/coverage/lib-story_generator_rb.html +43 -49
  54. data/lib/branston/db/development.sqlite3 +0 -0
  55. data/lib/branston/db/test.sqlite3 +0 -0
  56. data/lib/branston/log/development.log +1516 -0
  57. data/lib/branston/log/test.log +10156 -0
  58. data/lib/branston/public/images/agplv3.png +0 -0
  59. data/lib/branston/test/functional/stories_controller_test.rb +33 -32
  60. metadata +5 -5
  61. data/LICENSE +0 -20
@@ -28,8 +28,8 @@
28
28
  <tbody>
29
29
  <tr>
30
30
  <td class="left_align"><a href="app-models-user_rb.html">app/models/user.rb</a></td>
31
- <td class='right_align'><tt>56</tt></td>
32
- <td class='right_align'><tt>32</tt></td>
31
+ <td class='right_align'><tt>75</tt></td>
32
+ <td class='right_align'><tt>35</tt></td>
33
33
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
34
34
  <div class="percent_graph">
35
35
  <div class="covered" style="width:100px"></div>
@@ -56,344 +56,458 @@
56
56
 
57
57
 
58
58
 
59
+ <tr class="inferred">
60
+ <td><pre><a name="line1">1</a> # This file is part of Branston.</pre></td>
61
+ </tr>
62
+
63
+
64
+
65
+ <tr class="inferred">
66
+ <td><pre><a name="line2">2</a> #</pre></td>
67
+ </tr>
68
+
69
+
70
+
71
+ <tr class="inferred">
72
+ <td><pre><a name="line3">3</a> # Branston is free software: you can redistribute it and/or modify</pre></td>
73
+ </tr>
74
+
75
+
76
+
77
+ <tr class="inferred">
78
+ <td><pre><a name="line4">4</a> # it under the terms of the GNU Affero General Public License as published by</pre></td>
79
+ </tr>
80
+
81
+
82
+
83
+ <tr class="inferred">
84
+ <td><pre><a name="line5">5</a> # the Free Software Foundation.</pre></td>
85
+ </tr>
86
+
87
+
88
+
89
+ <tr class="inferred">
90
+ <td><pre><a name="line6">6</a> #</pre></td>
91
+ </tr>
92
+
93
+
94
+
95
+ <tr class="inferred">
96
+ <td><pre><a name="line7">7</a> # Branston is distributed in the hope that it will be useful,</pre></td>
97
+ </tr>
98
+
99
+
100
+
101
+ <tr class="inferred">
102
+ <td><pre><a name="line8">8</a> # but WITHOUT ANY WARRANTY; without even the implied warranty of</pre></td>
103
+ </tr>
104
+
105
+
106
+
107
+ <tr class="inferred">
108
+ <td><pre><a name="line9">9</a> # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</pre></td>
109
+ </tr>
110
+
111
+
112
+
113
+ <tr class="inferred">
114
+ <td><pre><a name="line10">10</a> # GNU Affero General Public License for more details.</pre></td>
115
+ </tr>
116
+
117
+
118
+
119
+ <tr class="inferred">
120
+ <td><pre><a name="line11">11</a> #</pre></td>
121
+ </tr>
122
+
123
+
124
+
125
+ <tr class="inferred">
126
+ <td><pre><a name="line12">12</a> # You should have received a copy of the GNU Affero General Public License</pre></td>
127
+ </tr>
128
+
129
+
130
+
131
+ <tr class="inferred">
132
+ <td><pre><a name="line13">13</a> # along with Branston. If not, see &lt;http://www.gnu.org/licenses/&gt;.</pre></td>
133
+ </tr>
134
+
135
+
136
+
137
+ <tr class="inferred">
138
+ <td><pre><a name="line14">14</a> </pre></td>
139
+ </tr>
140
+
141
+
142
+
59
143
  <tr class="marked">
60
- <td><pre><a name="line1">1</a> require 'digest/sha1'</pre></td>
144
+ <td><pre><a name="line15">15</a> require 'digest/sha1'</pre></td>
61
145
  </tr>
62
146
 
63
147
 
64
148
 
65
149
  <tr class="inferred">
66
- <td><pre><a name="line2">2</a> </pre></td>
150
+ <td><pre><a name="line16">16</a> </pre></td>
67
151
  </tr>
68
152
 
69
153
 
70
154
 
71
155
  <tr class="marked">
72
- <td><pre><a name="line3">3</a> class User &lt; ActiveRecord::Base</pre></td>
156
+ <td><pre><a name="line17">17</a> class User &lt; ActiveRecord::Base</pre></td>
73
157
  </tr>
74
158
 
75
159
 
76
160
 
77
161
  <tr class="marked">
78
- <td><pre><a name="line4">4</a> include Authentication</pre></td>
162
+ <td><pre><a name="line18">18</a> include Authentication</pre></td>
79
163
  </tr>
80
164
 
81
165
 
82
166
 
83
167
  <tr class="marked">
84
- <td><pre><a name="line5">5</a> include Authentication::ByPassword</pre></td>
168
+ <td><pre><a name="line19">19</a> include Authentication::ByPassword</pre></td>
85
169
  </tr>
86
170
 
87
171
 
88
172
 
89
173
  <tr class="marked">
90
- <td><pre><a name="line6">6</a> include Authentication::ByCookieToken</pre></td>
174
+ <td><pre><a name="line20">20</a> include Authentication::ByCookieToken</pre></td>
91
175
  </tr>
92
176
 
93
177
 
94
178
 
95
179
  <tr class="inferred">
96
- <td><pre><a name="line7">7</a> </pre></td>
180
+ <td><pre><a name="line21">21</a> </pre></td>
97
181
  </tr>
98
182
 
99
183
 
100
184
 
101
185
  <tr class="marked">
102
- <td><pre><a name="line8">8</a> validates_presence_of :login</pre></td>
186
+ <td><pre><a name="line22">22</a> validates_presence_of :login</pre></td>
103
187
  </tr>
104
188
 
105
189
 
106
190
 
107
191
  <tr class="marked">
108
- <td><pre><a name="line9">9</a> validates_length_of :login, :within =&gt; 3..40</pre></td>
192
+ <td><pre><a name="line23">23</a> validates_length_of :login, :within =&gt; 3..40</pre></td>
109
193
  </tr>
110
194
 
111
195
 
112
196
 
113
197
  <tr class="marked">
114
- <td><pre><a name="line10">10</a> validates_uniqueness_of :login</pre></td>
198
+ <td><pre><a name="line24">24</a> validates_uniqueness_of :login</pre></td>
115
199
  </tr>
116
200
 
117
201
 
118
202
 
119
203
  <tr class="marked">
120
- <td><pre><a name="line11">11</a> validates_format_of :login, :with =&gt; Authentication.login_regex, :message =&gt; Authentication.bad_login_message</pre></td>
204
+ <td><pre><a name="line25">25</a> validates_format_of :login, :with =&gt; Authentication.login_regex, :message =&gt; Authentication.bad_login_message</pre></td>
121
205
  </tr>
122
206
 
123
207
 
124
208
 
125
209
  <tr class="inferred">
126
- <td><pre><a name="line12">12</a> </pre></td>
210
+ <td><pre><a name="line26">26</a> </pre></td>
127
211
  </tr>
128
212
 
129
213
 
130
214
 
131
215
  <tr class="marked">
132
- <td><pre><a name="line13">13</a> validates_format_of :name, :with =&gt; Authentication.name_regex, :message =&gt; Authentication.bad_name_message, :allow_nil =&gt; true</pre></td>
216
+ <td><pre><a name="line27">27</a> validates_format_of :name, :with =&gt; Authentication.name_regex, :message =&gt; Authentication.bad_name_message, :allow_nil =&gt; true</pre></td>
133
217
  </tr>
134
218
 
135
219
 
136
220
 
137
221
  <tr class="marked">
138
- <td><pre><a name="line14">14</a> validates_length_of :name, :maximum =&gt; 100</pre></td>
222
+ <td><pre><a name="line28">28</a> validates_length_of :name, :maximum =&gt; 100</pre></td>
139
223
  </tr>
140
224
 
141
225
 
142
226
 
143
227
  <tr class="inferred">
144
- <td><pre><a name="line15">15</a> </pre></td>
228
+ <td><pre><a name="line29">29</a> </pre></td>
145
229
  </tr>
146
230
 
147
231
 
148
232
 
149
233
  <tr class="marked">
150
- <td><pre><a name="line16">16</a> validates_presence_of :email</pre></td>
234
+ <td><pre><a name="line30">30</a> validates_presence_of :email</pre></td>
151
235
  </tr>
152
236
 
153
237
 
154
238
 
155
239
  <tr class="marked">
156
- <td><pre><a name="line17">17</a> validates_length_of :email, :within =&gt; 6..100 #r@a.wk</pre></td>
240
+ <td><pre><a name="line31">31</a> validates_length_of :email, :within =&gt; 6..100 #r@a.wk</pre></td>
157
241
  </tr>
158
242
 
159
243
 
160
244
 
161
245
  <tr class="marked">
162
- <td><pre><a name="line18">18</a> validates_uniqueness_of :email</pre></td>
246
+ <td><pre><a name="line32">32</a> validates_uniqueness_of :email</pre></td>
163
247
  </tr>
164
248
 
165
249
 
166
250
 
167
251
  <tr class="marked">
168
- <td><pre><a name="line19">19</a> validates_format_of :email, :with =&gt; Authentication.email_regex, :message =&gt; Authentication.bad_email_message</pre></td>
252
+ <td><pre><a name="line33">33</a> validates_format_of :email, :with =&gt; Authentication.email_regex, :message =&gt; Authentication.bad_email_message</pre></td>
169
253
  </tr>
170
254
 
171
255
 
172
256
 
173
257
  <tr class="inferred">
174
- <td><pre><a name="line20">20</a> </pre></td>
258
+ <td><pre><a name="line34">34</a> </pre></td>
175
259
  </tr>
176
260
 
177
261
 
178
262
 
179
263
  <tr class="marked">
180
- <td><pre><a name="line21">21</a> has_many :participations</pre></td>
264
+ <td><pre><a name="line35">35</a> has_many :participations</pre></td>
181
265
  </tr>
182
266
 
183
267
 
184
268
 
185
269
  <tr class="marked">
186
- <td><pre><a name="line22">22</a> has_many :iterations, :through =&gt; :participations</pre></td>
270
+ <td><pre><a name="line36">36</a> has_many :iterations, :through =&gt; :participations</pre></td>
187
271
  </tr>
188
272
 
189
273
 
190
274
 
191
275
  <tr class="marked">
192
- <td><pre><a name="line23">23</a> has_many :stories, :foreign_key =&gt; 'author_id'</pre></td>
276
+ <td><pre><a name="line37">37</a> has_many :stories, :foreign_key =&gt; 'author_id'</pre></td>
193
277
  </tr>
194
278
 
195
279
 
196
280
 
197
281
  <tr class="inferred">
198
- <td><pre><a name="line24">24</a> </pre></td>
282
+ <td><pre><a name="line38">38</a> </pre></td>
199
283
  </tr>
200
284
 
201
285
 
202
286
 
203
287
  <tr class="inferred">
204
- <td><pre><a name="line25">25</a> # HACK HACK HACK -- how to do attr_accessible from here?</pre></td>
288
+ <td><pre><a name="line39">39</a> # HACK HACK HACK -- how to do attr_accessible from here?</pre></td>
205
289
  </tr>
206
290
 
207
291
 
208
292
 
209
293
  <tr class="inferred">
210
- <td><pre><a name="line26">26</a> # prevents a user from submitting a crafted form that bypasses activation</pre></td>
294
+ <td><pre><a name="line40">40</a> # prevents a user from submitting a crafted form that bypasses activation</pre></td>
211
295
  </tr>
212
296
 
213
297
 
214
298
 
215
299
  <tr class="inferred">
216
- <td><pre><a name="line27">27</a> # anything else you want your user to change should be added here.</pre></td>
300
+ <td><pre><a name="line41">41</a> # anything else you want your user to change should be added here.</pre></td>
217
301
  </tr>
218
302
 
219
303
 
220
304
 
221
305
  <tr class="marked">
222
- <td><pre><a name="line28">28</a> attr_accessible :login, :email, :name, :password, :password_confirmation</pre></td>
306
+ <td><pre><a name="line42">42</a> attr_accessible :login, :email, :name, :password, :password_confirmation</pre></td>
223
307
  </tr>
224
308
 
225
309
 
226
310
 
227
311
  <tr class="inferred">
228
- <td><pre><a name="line29">29</a> </pre></td>
312
+ <td><pre><a name="line43">43</a> </pre></td>
229
313
  </tr>
230
314
 
231
315
 
232
316
 
233
317
  <tr class="inferred">
234
- <td><pre><a name="line30">30</a> </pre></td>
318
+ <td><pre><a name="line44">44</a> </pre></td>
235
319
  </tr>
236
320
 
237
321
 
238
322
 
239
323
  <tr class="inferred">
240
- <td><pre><a name="line31">31</a> </pre></td>
324
+ <td><pre><a name="line45">45</a> </pre></td>
241
325
  </tr>
242
326
 
243
327
 
244
328
 
245
329
  <tr class="inferred">
246
- <td><pre><a name="line32">32</a> # Authenticates a user by their login name and unencrypted password. Returns the user or nil.</pre></td>
330
+ <td><pre><a name="line46">46</a> # Authenticates a user by their login name and unencrypted password. Returns the user or nil.</pre></td>
247
331
  </tr>
248
332
 
249
333
 
250
334
 
251
335
  <tr class="inferred">
252
- <td><pre><a name="line33">33</a> #</pre></td>
336
+ <td><pre><a name="line47">47</a> #</pre></td>
253
337
  </tr>
254
338
 
255
339
 
256
340
 
257
341
  <tr class="inferred">
258
- <td><pre><a name="line34">34</a> # uff. this is really an authorization, not authentication routine. </pre></td>
342
+ <td><pre><a name="line48">48</a> # uff. this is really an authorization, not authentication routine.</pre></td>
259
343
  </tr>
260
344
 
261
345
 
262
346
 
263
347
  <tr class="inferred">
264
- <td><pre><a name="line35">35</a> # We really need a Dispatch Chain here or something.</pre></td>
348
+ <td><pre><a name="line49">49</a> # We really need a Dispatch Chain here or something.</pre></td>
265
349
  </tr>
266
350
 
267
351
 
268
352
 
269
353
  <tr class="inferred">
270
- <td><pre><a name="line36">36</a> # This will also let us return a human error message.</pre></td>
354
+ <td><pre><a name="line50">50</a> # This will also let us return a human error message.</pre></td>
271
355
  </tr>
272
356
 
273
357
 
274
358
 
275
359
  <tr class="inferred">
276
- <td><pre><a name="line37">37</a> #</pre></td>
360
+ <td><pre><a name="line51">51</a> #</pre></td>
277
361
  </tr>
278
362
 
279
363
 
280
364
 
281
365
  <tr class="marked">
282
- <td><pre><a name="line38">38</a> def self.authenticate(login, password)</pre></td>
366
+ <td><pre><a name="line52">52</a> def self.authenticate(login, password)</pre></td>
283
367
  </tr>
284
368
 
285
369
 
286
370
 
287
371
  <tr class="marked">
288
- <td><pre><a name="line39">39</a> return nil if login.blank? || password.blank?</pre></td>
372
+ <td><pre><a name="line53">53</a> return nil if login.blank? || password.blank?</pre></td>
289
373
  </tr>
290
374
 
291
375
 
292
376
 
293
377
  <tr class="marked">
294
- <td><pre><a name="line40">40</a> u = find_by_login(login.downcase) # need to get the salt</pre></td>
378
+ <td><pre><a name="line54">54</a> u = find_by_login(login.downcase) # need to get the salt</pre></td>
295
379
  </tr>
296
380
 
297
381
 
298
382
 
299
383
  <tr class="marked">
300
- <td><pre><a name="line41">41</a> u &amp;&amp; u.authenticated?(password) ? u : nil</pre></td>
384
+ <td><pre><a name="line55">55</a> u &amp;&amp; u.authenticated?(password) ? u : nil</pre></td>
301
385
  </tr>
302
386
 
303
387
 
304
388
 
305
389
  <tr class="inferred">
306
- <td><pre><a name="line42">42</a> end</pre></td>
390
+ <td><pre><a name="line56">56</a> end</pre></td>
307
391
  </tr>
308
392
 
309
393
 
310
394
 
311
395
  <tr class="inferred">
312
- <td><pre><a name="line43">43</a> </pre></td>
396
+ <td><pre><a name="line57">57</a> </pre></td>
313
397
  </tr>
314
398
 
315
399
 
316
400
 
317
401
  <tr class="marked">
318
- <td><pre><a name="line44">44</a> def login=(value)</pre></td>
402
+ <td><pre><a name="line58">58</a> def login=(value)</pre></td>
319
403
  </tr>
320
404
 
321
405
 
322
406
 
323
407
  <tr class="marked">
324
- <td><pre><a name="line45">45</a> write_attribute :login, (value ? value.downcase : nil)</pre></td>
408
+ <td><pre><a name="line59">59</a> write_attribute :login, (value ? value.downcase : nil)</pre></td>
325
409
  </tr>
326
410
 
327
411
 
328
412
 
329
413
  <tr class="inferred">
330
- <td><pre><a name="line46">46</a> end</pre></td>
414
+ <td><pre><a name="line60">60</a> end</pre></td>
331
415
  </tr>
332
416
 
333
417
 
334
418
 
335
419
  <tr class="inferred">
336
- <td><pre><a name="line47">47</a> </pre></td>
420
+ <td><pre><a name="line61">61</a> </pre></td>
337
421
  </tr>
338
422
 
339
423
 
340
424
 
341
425
  <tr class="marked">
342
- <td><pre><a name="line48">48</a> def email=(value)</pre></td>
426
+ <td><pre><a name="line62">62</a> def email=(value)</pre></td>
343
427
  </tr>
344
428
 
345
429
 
346
430
 
347
431
  <tr class="marked">
348
- <td><pre><a name="line49">49</a> write_attribute :email, (value ? value.downcase : nil)</pre></td>
432
+ <td><pre><a name="line63">63</a> write_attribute :email, (value ? value.downcase : nil)</pre></td>
349
433
  </tr>
350
434
 
351
435
 
352
436
 
353
437
  <tr class="inferred">
354
- <td><pre><a name="line50">50</a> end</pre></td>
438
+ <td><pre><a name="line64">64</a> end</pre></td>
355
439
  </tr>
356
440
 
357
441
 
358
442
 
359
443
  <tr class="inferred">
360
- <td><pre><a name="line51">51</a> </pre></td>
444
+ <td><pre><a name="line65">65</a> </pre></td>
361
445
  </tr>
362
446
 
363
447
 
364
448
 
365
449
  <tr class="marked">
366
- <td><pre><a name="line52">52</a> protected</pre></td>
450
+ <td><pre><a name="line66">66</a> def to_s</pre></td>
451
+ </tr>
452
+
453
+
454
+
455
+ <tr class="marked">
456
+ <td><pre><a name="line67">67</a> login</pre></td>
457
+ </tr>
458
+
459
+
460
+
461
+ <tr class="inferred">
462
+ <td><pre><a name="line68">68</a> end</pre></td>
463
+ </tr>
464
+
465
+
466
+
467
+ <tr class="inferred">
468
+ <td><pre><a name="line69">69</a> </pre></td>
469
+ </tr>
470
+
471
+
472
+
473
+ <tr class="marked">
474
+ <td><pre><a name="line70">70</a> protected</pre></td>
475
+ </tr>
476
+
477
+
478
+
479
+ <tr class="inferred">
480
+ <td><pre><a name="line71">71</a> </pre></td>
367
481
  </tr>
368
482
 
369
483
 
370
484
 
371
485
  <tr class="inferred">
372
- <td><pre><a name="line53">53</a> </pre></td>
486
+ <td><pre><a name="line72">72</a> </pre></td>
373
487
  </tr>
374
488
 
375
489
 
376
490
 
377
491
  <tr class="inferred">
378
- <td><pre><a name="line54">54</a> </pre></td>
492
+ <td><pre><a name="line73">73</a> </pre></td>
379
493
  </tr>
380
494
 
381
495
 
382
496
 
383
497
  <tr class="inferred">
384
- <td><pre><a name="line55">55</a> </pre></td>
498
+ <td><pre><a name="line74">74</a> end</pre></td>
385
499
  </tr>
386
500
 
387
501
 
388
502
 
389
503
  <tr class="inferred">
390
- <td><pre><a name="line56">56</a> end</pre></td>
504
+ <td><pre><a name="line75">75</a> </pre></td>
391
505
  </tr>
392
506
 
393
507
  </tbody>
394
508
  </table>
395
509
 
396
- <p>Generated on Thu Dec 03 16:49:25 +0000 2009 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
510
+ <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
397
511
 
398
512
  </body>
399
513
  </html>