branston 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1,7 +1,22 @@
1
+ # This file is part of Branston.
2
+ #
3
+ # Branston is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU Affero General Public License as published by
5
+ # the Free Software Foundation.
6
+ #
7
+ # Branston is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU Affero General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU Affero General Public License
13
+ # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
+
1
15
  class Release < ActiveRecord::Base
2
-
16
+
3
17
  validates_presence_of :release_date
4
-
18
+
5
19
  has_many :iterations, :order => 'end_date'
6
-
20
+
7
21
  end
22
+
@@ -1,3 +1,17 @@
1
+ # This file is part of Branston.
2
+ #
3
+ # Branston is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU Affero General Public License as published by
5
+ # the Free Software Foundation.
6
+ #
7
+ # Branston is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU Affero General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU Affero General Public License
13
+ # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
+
1
15
  class Scenario < ActiveRecord::Base
2
16
 
3
17
  # Assocations
@@ -1,3 +1,17 @@
1
+ # This file is part of Branston.
2
+ #
3
+ # Branston is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU Affero General Public License as published by
5
+ # the Free Software Foundation.
6
+ #
7
+ # Branston is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU Affero General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU Affero General Public License
13
+ # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
+
1
15
  include StoryGenerator
2
16
 
3
17
  class Story < ActiveRecord::Base
@@ -21,42 +35,42 @@ class Story < ActiveRecord::Base
21
35
  named_scope :completed, :conditions => 'status = "completed"'
22
36
  named_scope :for_iteration, lambda { |id| { :conditions => ['iteration_id = ?',
23
37
  id] } }
24
-
38
+
25
39
  before_save :set_slug
26
-
40
+
27
41
  # Story states
28
42
  # New - A story that has been drafted, but is not being worked on
29
- # In Progress - A story that is being actioned by a member of the development
43
+ # In Progress - A story that is being actioned by a member of the development
30
44
  # team
31
- # Completed - A story that has been implemented and tested by the development
45
+ # Completed - A story that has been implemented and tested by the development
32
46
  # team
33
47
  #
34
48
  state_machine :status, :initial => :new do
35
49
  state :new
36
50
  state :in_progress
37
51
  state :completed
38
-
52
+
39
53
  event :assign do
40
54
  transition :new => :in_progress
41
55
  end
42
-
56
+
43
57
  event :finish do
44
58
  transition :in_progress => :completed
45
59
  end
46
-
60
+
47
61
  after_transition any => :completed do |story, transition|
48
62
  story.completed_date = Date.today
49
63
  end
50
64
  end
51
-
65
+
52
66
  def to_param
53
67
  title.parameterize
54
68
  end
55
-
69
+
56
70
  private
57
71
  def set_slug
58
72
  self.slug = self.to_param
59
73
  end
60
-
74
+
61
75
  end
62
76
 
@@ -1,3 +1,17 @@
1
+ # This file is part of Branston.
2
+ #
3
+ # Branston is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU Affero General Public License as published by
5
+ # the Free Software Foundation.
6
+ #
7
+ # Branston is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU Affero General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU Affero General Public License
13
+ # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
+
1
15
  require 'digest/sha1'
2
16
 
3
17
  class User < ActiveRecord::Base
@@ -31,7 +45,7 @@ class User < ActiveRecord::Base
31
45
 
32
46
  # Authenticates a user by their login name and unencrypted password. Returns the user or nil.
33
47
  #
34
- # uff. this is really an authorization, not authentication routine.
48
+ # uff. this is really an authorization, not authentication routine.
35
49
  # We really need a Dispatch Chain here or something.
36
50
  # This will also let us return a human error message.
37
51
  #
@@ -48,13 +62,14 @@ class User < ActiveRecord::Base
48
62
  def email=(value)
49
63
  write_attribute :email, (value ? value.downcase : nil)
50
64
  end
51
-
65
+
52
66
  def to_s
53
67
  login
54
68
  end
55
69
 
56
70
  protected
57
-
71
+
58
72
 
59
73
 
60
74
  end
75
+
@@ -1,3 +1,17 @@
1
+ # This file is part of Branston.
2
+ #
3
+ # Branston is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU Affero General Public License as published by
5
+ # the Free Software Foundation.
6
+ #
7
+ # Branston is distributed in the hope that it will be useful,
8
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
9
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
+ # GNU Affero General Public License for more details.
11
+ #
12
+ # You should have received a copy of the GNU Affero General Public License
13
+ # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
+
1
15
  class UserRole < ActiveRecord::Base
2
16
 
3
17
  validates_presence_of :name
@@ -1,7 +1,8 @@
1
1
  <!-- layouts/_footer.html.erb -->
2
2
  <div style="clear: both;">&nbsp;</div>
3
- <div id="footer">
4
- <p>Copyright (c) 2008 HeadLondon.com. All rights reserved. Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.</p>
3
+ <div id="footer">
4
+ <p>Copyright (c) 2010 <a href="http://www.headlondon.com">headlondon.com</a>. All rights reserved. Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>. Branston is Free Software released under the Affero GPL.<br/>
5
+ <%= image_tag "agplv3.png" %></p>
5
6
  </div>
6
7
  <!-- end #footer -->
7
8
 
@@ -28,7 +28,7 @@
28
28
  <tbody>
29
29
  <tr>
30
30
  <td class="left_align"><a href="app-controllers-application_controller_rb.html">app/controllers/application_controller.rb</a></td>
31
- <td class='right_align'><tt>13</tt></td>
31
+ <td class='right_align'><tt>28</tt></td>
32
32
  <td class='right_align'><tt>5</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">
@@ -57,85 +57,175 @@
57
57
 
58
58
 
59
59
  <tr class="inferred">
60
- <td><pre><a name="line1">1</a> # Filters added to this controller apply to all controllers in the application.</pre></td>
60
+ <td><pre><a name="line1">1</a> # This file is part of Branston.</pre></td>
61
61
  </tr>
62
62
 
63
63
 
64
64
 
65
65
  <tr class="inferred">
66
- <td><pre><a name="line2">2</a> # Likewise, all the methods added will be available for all controllers.</pre></td>
66
+ <td><pre><a name="line2">2</a> #</pre></td>
67
67
  </tr>
68
68
 
69
69
 
70
70
 
71
71
  <tr class="inferred">
72
- <td><pre><a name="line3">3</a> </pre></td>
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
+
143
+ <tr class="inferred">
144
+ <td><pre><a name="line15">15</a> # Filters added to this controller apply to all controllers in the application.</pre></td>
145
+ </tr>
146
+
147
+
148
+
149
+ <tr class="inferred">
150
+ <td><pre><a name="line16">16</a> # Likewise, all the methods added will be available for all controllers.</pre></td>
151
+ </tr>
152
+
153
+
154
+
155
+ <tr class="inferred">
156
+ <td><pre><a name="line17">17</a> #</pre></td>
73
157
  </tr>
74
158
 
75
159
 
76
160
 
77
161
  <tr class="marked">
78
- <td><pre><a name="line4">4</a> class ApplicationController &lt; ActionController::Base</pre></td>
162
+ <td><pre><a name="line18">18</a> class ApplicationController &lt; ActionController::Base</pre></td>
79
163
  </tr>
80
164
 
81
165
 
82
166
 
83
167
  <tr class="marked">
84
- <td><pre><a name="line5">5</a> helper :all # include all helpers, all the time</pre></td>
168
+ <td><pre><a name="line19">19</a> helper :all # include all helpers, all the time</pre></td>
85
169
  </tr>
86
170
 
87
171
 
88
172
 
89
173
  <tr class="marked">
90
- <td><pre><a name="line6">6</a> protect_from_forgery # See ActionController::RequestForgeryProtection for details</pre></td>
174
+ <td><pre><a name="line20">20</a> protect_from_forgery # See ActionController::RequestForgeryProtection for details</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="inferred">
102
- <td><pre><a name="line8">8</a> # Scrub sensitive parameters from your log</pre></td>
186
+ <td><pre><a name="line22">22</a> # Scrub sensitive parameters from your log</pre></td>
103
187
  </tr>
104
188
 
105
189
 
106
190
 
107
191
  <tr class="inferred">
108
- <td><pre><a name="line9">9</a> # filter_parameter_logging :password</pre></td>
192
+ <td><pre><a name="line23">23</a> # filter_parameter_logging :password</pre></td>
109
193
  </tr>
110
194
 
111
195
 
112
196
 
113
197
  <tr class="inferred">
114
- <td><pre><a name="line10">10</a> </pre></td>
198
+ <td><pre><a name="line24">24</a> </pre></td>
115
199
  </tr>
116
200
 
117
201
 
118
202
 
119
203
  <tr class="inferred">
120
- <td><pre><a name="line11">11</a> # RESTful authentication system</pre></td>
204
+ <td><pre><a name="line25">25</a> # RESTful authentication system</pre></td>
121
205
  </tr>
122
206
 
123
207
 
124
208
 
125
209
  <tr class="marked">
126
- <td><pre><a name="line12">12</a> include AuthenticatedSystem</pre></td>
210
+ <td><pre><a name="line26">26</a> include AuthenticatedSystem</pre></td>
211
+ </tr>
212
+
213
+
214
+
215
+ <tr class="inferred">
216
+ <td><pre><a name="line27">27</a> end</pre></td>
127
217
  </tr>
128
218
 
129
219
 
130
220
 
131
221
  <tr class="inferred">
132
- <td><pre><a name="line13">13</a> end</pre></td>
222
+ <td><pre><a name="line28">28</a> </pre></td>
133
223
  </tr>
134
224
 
135
225
  </tbody>
136
226
  </table>
137
227
 
138
- <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>
228
+ <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>
139
229
 
140
230
  </body>
141
231
  </html>
@@ -28,8 +28,8 @@
28
28
  <tbody>
29
29
  <tr>
30
30
  <td class="left_align"><a href="app-controllers-iterations_controller_rb.html">app/controllers/iterations_controller.rb</a></td>
31
- <td class='right_align'><tt>105</tt></td>
32
- <td class='right_align'><tt>72</tt></td>
31
+ <td class='right_align'><tt>123</tt></td>
32
+ <td class='right_align'><tt>74</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,638 +56,746 @@
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
+
143
+ <tr class="inferred">
144
+ <td><pre><a name="line15">15</a> </pre></td>
145
+ </tr>
146
+
147
+
148
+
59
149
  <tr class="marked">
60
- <td><pre><a name="line1">1</a> class IterationsController &lt; ApplicationController</pre></td>
150
+ <td><pre><a name="line16">16</a> class IterationsController &lt; ApplicationController</pre></td>
61
151
  </tr>
62
152
 
63
153
 
64
154
 
65
155
  <tr class="inferred">
66
- <td><pre><a name="line2">2</a> </pre></td>
156
+ <td><pre><a name="line17">17</a> </pre></td>
67
157
  </tr>
68
158
 
69
159
 
70
160
 
71
161
  <tr class="marked">
72
- <td><pre><a name="line3">3</a> layout 'main'</pre></td>
162
+ <td><pre><a name="line18">18</a> layout 'main'</pre></td>
73
163
  </tr>
74
164
 
75
165
 
76
166
 
77
167
  <tr class="inferred">
78
- <td><pre><a name="line4">4</a> </pre></td>
168
+ <td><pre><a name="line19">19</a> </pre></td>
79
169
  </tr>
80
170
 
81
171
 
82
172
 
83
173
  <tr class="marked">
84
- <td><pre><a name="line5">5</a> in_place_edit_for :iteration, :velocity</pre></td>
174
+ <td><pre><a name="line20">20</a> in_place_edit_for :iteration, :velocity</pre></td>
85
175
  </tr>
86
176
 
87
177
 
88
178
 
89
179
  <tr class="marked">
90
- <td><pre><a name="line6">6</a> in_place_edit_for :iteration, :name</pre></td>
180
+ <td><pre><a name="line21">21</a> in_place_edit_for :iteration, :name</pre></td>
91
181
  </tr>
92
182
 
93
183
 
94
184
 
95
185
  <tr class="inferred">
96
- <td><pre><a name="line7">7</a> </pre></td>
186
+ <td><pre><a name="line22">22</a> </pre></td>
187
+ </tr>
188
+
189
+
190
+
191
+ <tr class="marked">
192
+ <td><pre><a name="line23">23</a> before_filter :login_required</pre></td>
97
193
  </tr>
98
194
 
99
195
 
100
196
 
101
197
  <tr class="marked">
102
- <td><pre><a name="line8">8</a> before_filter :find_all_releases, :only =&gt; [:new, :edit]</pre></td>
198
+ <td><pre><a name="line24">24</a> before_filter :find_all_releases, :only =&gt; [:new, :edit]</pre></td>
103
199
  </tr>
104
200
 
105
201
 
106
202
 
107
203
  <tr class="inferred">
108
- <td><pre><a name="line9">9</a> </pre></td>
204
+ <td><pre><a name="line25">25</a> </pre></td>
109
205
  </tr>
110
206
 
111
207
 
112
208
 
113
209
  <tr class="inferred">
114
- <td><pre><a name="line10">10</a> # GET /iterations</pre></td>
210
+ <td><pre><a name="line26">26</a> # GET /iterations</pre></td>
115
211
  </tr>
116
212
 
117
213
 
118
214
 
119
215
  <tr class="inferred">
120
- <td><pre><a name="line11">11</a> # GET /iterations.xml</pre></td>
216
+ <td><pre><a name="line27">27</a> # GET /iterations.xml</pre></td>
121
217
  </tr>
122
218
 
123
219
 
124
220
 
125
221
  <tr class="marked">
126
- <td><pre><a name="line12">12</a> def index</pre></td>
222
+ <td><pre><a name="line28">28</a> def index</pre></td>
127
223
  </tr>
128
224
 
129
225
 
130
226
 
131
227
  <tr class="marked">
132
- <td><pre><a name="line13">13</a> @iterations = Iteration.all</pre></td>
228
+ <td><pre><a name="line29">29</a> @iterations = Iteration.all</pre></td>
133
229
  </tr>
134
230
 
135
231
 
136
232
 
137
233
  <tr class="inferred">
138
- <td><pre><a name="line14">14</a> </pre></td>
234
+ <td><pre><a name="line30">30</a> </pre></td>
139
235
  </tr>
140
236
 
141
237
 
142
238
 
143
239
  <tr class="marked">
144
- <td><pre><a name="line15">15</a> respond_to do |format|</pre></td>
240
+ <td><pre><a name="line31">31</a> respond_to do |format|</pre></td>
145
241
  </tr>
146
242
 
147
243
 
148
244
 
149
245
  <tr class="marked">
150
- <td><pre><a name="line16">16</a> format.html # index.html.erb</pre></td>
246
+ <td><pre><a name="line32">32</a> format.html # index.html.erb</pre></td>
151
247
  </tr>
152
248
 
153
249
 
154
250
 
155
251
  <tr class="marked">
156
- <td><pre><a name="line17">17</a> format.xml { render :xml =&gt; @iterations }</pre></td>
252
+ <td><pre><a name="line33">33</a> format.xml { render :xml =&gt; @iterations }</pre></td>
157
253
  </tr>
158
254
 
159
255
 
160
256
 
161
257
  <tr class="inferred">
162
- <td><pre><a name="line18">18</a> end</pre></td>
258
+ <td><pre><a name="line34">34</a> end</pre></td>
163
259
  </tr>
164
260
 
165
261
 
166
262
 
167
263
  <tr class="inferred">
168
- <td><pre><a name="line19">19</a> end</pre></td>
264
+ <td><pre><a name="line35">35</a> end</pre></td>
169
265
  </tr>
170
266
 
171
267
 
172
268
 
173
269
  <tr class="inferred">
174
- <td><pre><a name="line20">20</a> </pre></td>
270
+ <td><pre><a name="line36">36</a> </pre></td>
175
271
  </tr>
176
272
 
177
273
 
178
274
 
179
275
  <tr class="inferred">
180
- <td><pre><a name="line21">21</a> # GET /iterations/1</pre></td>
276
+ <td><pre><a name="line37">37</a> # GET /iterations/1</pre></td>
181
277
  </tr>
182
278
 
183
279
 
184
280
 
185
281
  <tr class="inferred">
186
- <td><pre><a name="line22">22</a> # GET /iterations/1.xml</pre></td>
282
+ <td><pre><a name="line38">38</a> # GET /iterations/1.xml</pre></td>
187
283
  </tr>
188
284
 
189
285
 
190
286
 
191
287
  <tr class="marked">
192
- <td><pre><a name="line23">23</a> def show</pre></td>
288
+ <td><pre><a name="line39">39</a> def show</pre></td>
193
289
  </tr>
194
290
 
195
291
 
196
292
 
197
293
  <tr class="marked">
198
- <td><pre><a name="line24">24</a> @iteration = Iteration.find(params[:id])</pre></td>
294
+ <td><pre><a name="line40">40</a> @iteration = Iteration.find(params[:id])</pre></td>
199
295
  </tr>
200
296
 
201
297
 
202
298
 
203
299
  <tr class="inferred">
204
- <td><pre><a name="line25">25</a> </pre></td>
300
+ <td><pre><a name="line41">41</a> </pre></td>
301
+ </tr>
302
+
303
+
304
+
305
+ <tr class="marked">
306
+ <td><pre><a name="line42">42</a> @iteration_data = @iteration.burndown_data</pre></td>
307
+ </tr>
308
+
309
+
310
+
311
+ <tr class="inferred">
312
+ <td><pre><a name="line43">43</a> </pre></td>
205
313
  </tr>
206
314
 
207
315
 
208
316
 
209
317
  <tr class="marked">
210
- <td><pre><a name="line26">26</a> respond_to do |format|</pre></td>
318
+ <td><pre><a name="line44">44</a> respond_to do |format|</pre></td>
211
319
  </tr>
212
320
 
213
321
 
214
322
 
215
323
  <tr class="marked">
216
- <td><pre><a name="line27">27</a> format.html # show.html.erb</pre></td>
324
+ <td><pre><a name="line45">45</a> format.html # show.html.erb</pre></td>
217
325
  </tr>
218
326
 
219
327
 
220
328
 
221
329
  <tr class="marked">
222
- <td><pre><a name="line28">28</a> format.xml { render :xml =&gt; @iteration }</pre></td>
330
+ <td><pre><a name="line46">46</a> format.xml { render :xml =&gt; @iteration }</pre></td>
223
331
  </tr>
224
332
 
225
333
 
226
334
 
227
335
  <tr class="inferred">
228
- <td><pre><a name="line29">29</a> end</pre></td>
336
+ <td><pre><a name="line47">47</a> end</pre></td>
229
337
  </tr>
230
338
 
231
339
 
232
340
 
233
341
  <tr class="inferred">
234
- <td><pre><a name="line30">30</a> end</pre></td>
342
+ <td><pre><a name="line48">48</a> end</pre></td>
235
343
  </tr>
236
344
 
237
345
 
238
346
 
239
347
  <tr class="inferred">
240
- <td><pre><a name="line31">31</a> </pre></td>
348
+ <td><pre><a name="line49">49</a> </pre></td>
241
349
  </tr>
242
350
 
243
351
 
244
352
 
245
353
  <tr class="inferred">
246
- <td><pre><a name="line32">32</a> # GET /iterations/new</pre></td>
354
+ <td><pre><a name="line50">50</a> # GET /iterations/new</pre></td>
247
355
  </tr>
248
356
 
249
357
 
250
358
 
251
359
  <tr class="inferred">
252
- <td><pre><a name="line33">33</a> # GET /iterations/new.xml</pre></td>
360
+ <td><pre><a name="line51">51</a> # GET /iterations/new.xml</pre></td>
253
361
  </tr>
254
362
 
255
363
 
256
364
 
257
365
  <tr class="marked">
258
- <td><pre><a name="line34">34</a> def new</pre></td>
366
+ <td><pre><a name="line52">52</a> def new</pre></td>
259
367
  </tr>
260
368
 
261
369
 
262
370
 
263
371
  <tr class="marked">
264
- <td><pre><a name="line35">35</a> @releases = Release.all</pre></td>
372
+ <td><pre><a name="line53">53</a> @releases = Release.all</pre></td>
265
373
  </tr>
266
374
 
267
375
 
268
376
 
269
377
  <tr class="marked">
270
- <td><pre><a name="line36">36</a> @iteration = Iteration.new</pre></td>
378
+ <td><pre><a name="line54">54</a> @iteration = Iteration.new</pre></td>
271
379
  </tr>
272
380
 
273
381
 
274
382
 
275
383
  <tr class="inferred">
276
- <td><pre><a name="line37">37</a> </pre></td>
384
+ <td><pre><a name="line55">55</a> </pre></td>
277
385
  </tr>
278
386
 
279
387
 
280
388
 
281
389
  <tr class="marked">
282
- <td><pre><a name="line38">38</a> respond_to do |format|</pre></td>
390
+ <td><pre><a name="line56">56</a> respond_to do |format|</pre></td>
283
391
  </tr>
284
392
 
285
393
 
286
394
 
287
395
  <tr class="marked">
288
- <td><pre><a name="line39">39</a> format.html # new.html.erb</pre></td>
396
+ <td><pre><a name="line57">57</a> format.html # new.html.erb</pre></td>
289
397
  </tr>
290
398
 
291
399
 
292
400
 
293
401
  <tr class="marked">
294
- <td><pre><a name="line40">40</a> format.xml { render :xml =&gt; @iteration }</pre></td>
402
+ <td><pre><a name="line58">58</a> format.xml { render :xml =&gt; @iteration }</pre></td>
295
403
  </tr>
296
404
 
297
405
 
298
406
 
299
407
  <tr class="inferred">
300
- <td><pre><a name="line41">41</a> end</pre></td>
408
+ <td><pre><a name="line59">59</a> end</pre></td>
301
409
  </tr>
302
410
 
303
411
 
304
412
 
305
413
  <tr class="inferred">
306
- <td><pre><a name="line42">42</a> end</pre></td>
414
+ <td><pre><a name="line60">60</a> end</pre></td>
307
415
  </tr>
308
416
 
309
417
 
310
418
 
311
419
  <tr class="inferred">
312
- <td><pre><a name="line43">43</a> </pre></td>
420
+ <td><pre><a name="line61">61</a> </pre></td>
313
421
  </tr>
314
422
 
315
423
 
316
424
 
317
425
  <tr class="inferred">
318
- <td><pre><a name="line44">44</a> # GET /iterations/1/edit</pre></td>
426
+ <td><pre><a name="line62">62</a> # GET /iterations/1/edit</pre></td>
319
427
  </tr>
320
428
 
321
429
 
322
430
 
323
431
  <tr class="marked">
324
- <td><pre><a name="line45">45</a> def edit</pre></td>
432
+ <td><pre><a name="line63">63</a> def edit</pre></td>
325
433
  </tr>
326
434
 
327
435
 
328
436
 
329
437
  <tr class="marked">
330
- <td><pre><a name="line46">46</a> @releases = Release.all</pre></td>
438
+ <td><pre><a name="line64">64</a> @releases = Release.all</pre></td>
331
439
  </tr>
332
440
 
333
441
 
334
442
 
335
443
  <tr class="marked">
336
- <td><pre><a name="line47">47</a> @iteration = Iteration.find(params[:id])</pre></td>
444
+ <td><pre><a name="line65">65</a> @iteration = Iteration.find(params[:id])</pre></td>
337
445
  </tr>
338
446
 
339
447
 
340
448
 
341
449
  <tr class="inferred">
342
- <td><pre><a name="line48">48</a> end</pre></td>
450
+ <td><pre><a name="line66">66</a> end</pre></td>
343
451
  </tr>
344
452
 
345
453
 
346
454
 
347
455
  <tr class="inferred">
348
- <td><pre><a name="line49">49</a> </pre></td>
456
+ <td><pre><a name="line67">67</a> </pre></td>
349
457
  </tr>
350
458
 
351
459
 
352
460
 
353
461
  <tr class="inferred">
354
- <td><pre><a name="line50">50</a> # POST /iterations</pre></td>
462
+ <td><pre><a name="line68">68</a> # POST /iterations</pre></td>
355
463
  </tr>
356
464
 
357
465
 
358
466
 
359
467
  <tr class="inferred">
360
- <td><pre><a name="line51">51</a> # POST /iterations.xml</pre></td>
468
+ <td><pre><a name="line69">69</a> # POST /iterations.xml</pre></td>
361
469
  </tr>
362
470
 
363
471
 
364
472
 
365
473
  <tr class="marked">
366
- <td><pre><a name="line52">52</a> def create</pre></td>
474
+ <td><pre><a name="line70">70</a> def create</pre></td>
367
475
  </tr>
368
476
 
369
477
 
370
478
 
371
479
  <tr class="marked">
372
- <td><pre><a name="line53">53</a> @iteration = Iteration.new(params[:iteration])</pre></td>
480
+ <td><pre><a name="line71">71</a> @iteration = Iteration.new(params[:iteration])</pre></td>
373
481
  </tr>
374
482
 
375
483
 
376
484
 
377
485
  <tr class="inferred">
378
- <td><pre><a name="line54">54</a> </pre></td>
486
+ <td><pre><a name="line72">72</a> </pre></td>
379
487
  </tr>
380
488
 
381
489
 
382
490
 
383
491
  <tr class="marked">
384
- <td><pre><a name="line55">55</a> respond_to do |format|</pre></td>
492
+ <td><pre><a name="line73">73</a> respond_to do |format|</pre></td>
385
493
  </tr>
386
494
 
387
495
 
388
496
 
389
497
  <tr class="marked">
390
- <td><pre><a name="line56">56</a> if @iteration.save</pre></td>
498
+ <td><pre><a name="line74">74</a> if @iteration.save</pre></td>
391
499
  </tr>
392
500
 
393
501
 
394
502
 
395
503
  <tr class="marked">
396
- <td><pre><a name="line57">57</a> flash[:notice] = 'Iteration was successfully created.'</pre></td>
504
+ <td><pre><a name="line75">75</a> flash[:notice] = 'Iteration was successfully created.'</pre></td>
397
505
  </tr>
398
506
 
399
507
 
400
508
 
401
509
  <tr class="marked">
402
- <td><pre><a name="line58">58</a> format.html { redirect_to iterations_path }</pre></td>
510
+ <td><pre><a name="line76">76</a> format.html { redirect_to iterations_path }</pre></td>
403
511
  </tr>
404
512
 
405
513
 
406
514
 
407
515
  <tr class="marked">
408
- <td><pre><a name="line59">59</a> format.xml { render :xml =&gt; @iteration, :status =&gt; :created, :location =&gt; @iteration }</pre></td>
516
+ <td><pre><a name="line77">77</a> format.xml { render :xml =&gt; @iteration, :status =&gt; :created, :location =&gt; @iteration }</pre></td>
409
517
  </tr>
410
518
 
411
519
 
412
520
 
413
521
  <tr class="inferred">
414
- <td><pre><a name="line60">60</a> else</pre></td>
522
+ <td><pre><a name="line78">78</a> else</pre></td>
415
523
  </tr>
416
524
 
417
525
 
418
526
 
419
527
  <tr class="marked">
420
- <td><pre><a name="line61">61</a> @releases = Release.all</pre></td>
528
+ <td><pre><a name="line79">79</a> @releases = Release.all</pre></td>
421
529
  </tr>
422
530
 
423
531
 
424
532
 
425
533
  <tr class="marked">
426
- <td><pre><a name="line62">62</a> format.html { render :action =&gt; &quot;new&quot; }</pre></td>
534
+ <td><pre><a name="line80">80</a> format.html { render :action =&gt; &quot;new&quot; }</pre></td>
427
535
  </tr>
428
536
 
429
537
 
430
538
 
431
539
  <tr class="marked">
432
- <td><pre><a name="line63">63</a> format.xml { render :xml =&gt; @iteration.errors, :status =&gt; :unprocessable_entity }</pre></td>
540
+ <td><pre><a name="line81">81</a> format.xml { render :xml =&gt; @iteration.errors, :status =&gt; :unprocessable_entity }</pre></td>
433
541
  </tr>
434
542
 
435
543
 
436
544
 
437
545
  <tr class="inferred">
438
- <td><pre><a name="line64">64</a> end</pre></td>
546
+ <td><pre><a name="line82">82</a> end</pre></td>
439
547
  </tr>
440
548
 
441
549
 
442
550
 
443
551
  <tr class="inferred">
444
- <td><pre><a name="line65">65</a> end</pre></td>
552
+ <td><pre><a name="line83">83</a> end</pre></td>
445
553
  </tr>
446
554
 
447
555
 
448
556
 
449
557
  <tr class="inferred">
450
- <td><pre><a name="line66">66</a> end</pre></td>
558
+ <td><pre><a name="line84">84</a> end</pre></td>
451
559
  </tr>
452
560
 
453
561
 
454
562
 
455
563
  <tr class="inferred">
456
- <td><pre><a name="line67">67</a> </pre></td>
564
+ <td><pre><a name="line85">85</a> </pre></td>
457
565
  </tr>
458
566
 
459
567
 
460
568
 
461
569
  <tr class="inferred">
462
- <td><pre><a name="line68">68</a> # PUT /iterations/1</pre></td>
570
+ <td><pre><a name="line86">86</a> # PUT /iterations/1</pre></td>
463
571
  </tr>
464
572
 
465
573
 
466
574
 
467
575
  <tr class="inferred">
468
- <td><pre><a name="line69">69</a> # PUT /iterations/1.xml</pre></td>
576
+ <td><pre><a name="line87">87</a> # PUT /iterations/1.xml</pre></td>
469
577
  </tr>
470
578
 
471
579
 
472
580
 
473
581
  <tr class="marked">
474
- <td><pre><a name="line70">70</a> def update</pre></td>
582
+ <td><pre><a name="line88">88</a> def update</pre></td>
475
583
  </tr>
476
584
 
477
585
 
478
586
 
479
587
  <tr class="marked">
480
- <td><pre><a name="line71">71</a> @iteration = Iteration.find(params[:id])</pre></td>
588
+ <td><pre><a name="line89">89</a> @iteration = Iteration.find(params[:id])</pre></td>
481
589
  </tr>
482
590
 
483
591
 
484
592
 
485
593
  <tr class="inferred">
486
- <td><pre><a name="line72">72</a> </pre></td>
594
+ <td><pre><a name="line90">90</a> </pre></td>
487
595
  </tr>
488
596
 
489
597
 
490
598
 
491
599
  <tr class="marked">
492
- <td><pre><a name="line73">73</a> respond_to do |format|</pre></td>
600
+ <td><pre><a name="line91">91</a> respond_to do |format|</pre></td>
493
601
  </tr>
494
602
 
495
603
 
496
604
 
497
605
  <tr class="marked">
498
- <td><pre><a name="line74">74</a> if @iteration.update_attributes(params[:iteration])</pre></td>
606
+ <td><pre><a name="line92">92</a> if @iteration.update_attributes(params[:iteration])</pre></td>
499
607
  </tr>
500
608
 
501
609
 
502
610
 
503
611
  <tr class="marked">
504
- <td><pre><a name="line75">75</a> flash[:notice] = 'Iteration was successfully updated.'</pre></td>
612
+ <td><pre><a name="line93">93</a> flash[:notice] = 'Iteration was successfully updated.'</pre></td>
505
613
  </tr>
506
614
 
507
615
 
508
616
 
509
617
  <tr class="marked">
510
- <td><pre><a name="line76">76</a> format.html { redirect_to iterations_path }</pre></td>
618
+ <td><pre><a name="line94">94</a> format.html { redirect_to iterations_path }</pre></td>
511
619
  </tr>
512
620
 
513
621
 
514
622
 
515
623
  <tr class="marked">
516
- <td><pre><a name="line77">77</a> format.xml { head :ok }</pre></td>
624
+ <td><pre><a name="line95">95</a> format.xml { head :ok }</pre></td>
517
625
  </tr>
518
626
 
519
627
 
520
628
 
521
629
  <tr class="inferred">
522
- <td><pre><a name="line78">78</a> else</pre></td>
630
+ <td><pre><a name="line96">96</a> else</pre></td>
523
631
  </tr>
524
632
 
525
633
 
526
634
 
527
635
  <tr class="marked">
528
- <td><pre><a name="line79">79</a> @releases = Release.all</pre></td>
636
+ <td><pre><a name="line97">97</a> @releases = Release.all</pre></td>
529
637
  </tr>
530
638
 
531
639
 
532
640
 
533
641
  <tr class="marked">
534
- <td><pre><a name="line80">80</a> format.html { render :action =&gt; &quot;edit&quot; }</pre></td>
642
+ <td><pre><a name="line98">98</a> format.html { render :action =&gt; &quot;edit&quot; }</pre></td>
535
643
  </tr>
536
644
 
537
645
 
538
646
 
539
647
  <tr class="marked">
540
- <td><pre><a name="line81">81</a> format.xml { render :xml =&gt; @iteration.errors, :status =&gt; :unprocessable_entity }</pre></td>
648
+ <td><pre><a name="line99">99</a> format.xml { render :xml =&gt; @iteration.errors, :status =&gt; :unprocessable_entity }</pre></td>
541
649
  </tr>
542
650
 
543
651
 
544
652
 
545
653
  <tr class="inferred">
546
- <td><pre><a name="line82">82</a> end</pre></td>
654
+ <td><pre><a name="line100">100</a> end</pre></td>
547
655
  </tr>
548
656
 
549
657
 
550
658
 
551
659
  <tr class="inferred">
552
- <td><pre><a name="line83">83</a> end</pre></td>
660
+ <td><pre><a name="line101">101</a> end</pre></td>
553
661
  </tr>
554
662
 
555
663
 
556
664
 
557
665
  <tr class="inferred">
558
- <td><pre><a name="line84">84</a> end</pre></td>
666
+ <td><pre><a name="line102">102</a> end</pre></td>
559
667
  </tr>
560
668
 
561
669
 
562
670
 
563
671
  <tr class="inferred">
564
- <td><pre><a name="line85">85</a> </pre></td>
672
+ <td><pre><a name="line103">103</a> </pre></td>
565
673
  </tr>
566
674
 
567
675
 
568
676
 
569
677
  <tr class="inferred">
570
- <td><pre><a name="line86">86</a> # DELETE /iterations/1</pre></td>
678
+ <td><pre><a name="line104">104</a> # DELETE /iterations/1</pre></td>
571
679
  </tr>
572
680
 
573
681
 
574
682
 
575
683
  <tr class="inferred">
576
- <td><pre><a name="line87">87</a> # DELETE /iterations/1.xml</pre></td>
684
+ <td><pre><a name="line105">105</a> # DELETE /iterations/1.xml</pre></td>
577
685
  </tr>
578
686
 
579
687
 
580
688
 
581
689
  <tr class="marked">
582
- <td><pre><a name="line88">88</a> def destroy</pre></td>
690
+ <td><pre><a name="line106">106</a> def destroy</pre></td>
583
691
  </tr>
584
692
 
585
693
 
586
694
 
587
695
  <tr class="marked">
588
- <td><pre><a name="line89">89</a> @iteration = Iteration.find(params[:id])</pre></td>
696
+ <td><pre><a name="line107">107</a> @iteration = Iteration.find(params[:id])</pre></td>
589
697
  </tr>
590
698
 
591
699
 
592
700
 
593
701
  <tr class="marked">
594
- <td><pre><a name="line90">90</a> @iteration.destroy</pre></td>
702
+ <td><pre><a name="line108">108</a> @iteration.destroy</pre></td>
595
703
  </tr>
596
704
 
597
705
 
598
706
 
599
707
  <tr class="inferred">
600
- <td><pre><a name="line91">91</a> </pre></td>
708
+ <td><pre><a name="line109">109</a> </pre></td>
601
709
  </tr>
602
710
 
603
711
 
604
712
 
605
713
  <tr class="marked">
606
- <td><pre><a name="line92">92</a> respond_to do |format|</pre></td>
714
+ <td><pre><a name="line110">110</a> respond_to do |format|</pre></td>
607
715
  </tr>
608
716
 
609
717
 
610
718
 
611
719
  <tr class="marked">
612
- <td><pre><a name="line93">93</a> format.html { redirect_to(iterations_url) }</pre></td>
720
+ <td><pre><a name="line111">111</a> format.html { redirect_to(iterations_url) }</pre></td>
613
721
  </tr>
614
722
 
615
723
 
616
724
 
617
725
  <tr class="marked">
618
- <td><pre><a name="line94">94</a> format.xml { head :ok }</pre></td>
726
+ <td><pre><a name="line112">112</a> format.xml { head :ok }</pre></td>
619
727
  </tr>
620
728
 
621
729
 
622
730
 
623
731
  <tr class="inferred">
624
- <td><pre><a name="line95">95</a> end</pre></td>
732
+ <td><pre><a name="line113">113</a> end</pre></td>
625
733
  </tr>
626
734
 
627
735
 
628
736
 
629
737
  <tr class="inferred">
630
- <td><pre><a name="line96">96</a> end</pre></td>
738
+ <td><pre><a name="line114">114</a> end</pre></td>
631
739
  </tr>
632
740
 
633
741
 
634
742
 
635
743
  <tr class="inferred">
636
- <td><pre><a name="line97">97</a> </pre></td>
744
+ <td><pre><a name="line115">115</a> </pre></td>
637
745
  </tr>
638
746
 
639
747
 
640
748
 
641
749
  <tr class="marked">
642
- <td><pre><a name="line98">98</a> private</pre></td>
750
+ <td><pre><a name="line116">116</a> private</pre></td>
643
751
  </tr>
644
752
 
645
753
 
646
754
 
647
755
  <tr class="inferred">
648
- <td><pre><a name="line99">99</a> </pre></td>
756
+ <td><pre><a name="line117">117</a> </pre></td>
649
757
  </tr>
650
758
 
651
759
 
652
760
 
653
761
  <tr class="marked">
654
- <td><pre><a name="line100">100</a> def find_all_releases</pre></td>
762
+ <td><pre><a name="line118">118</a> def find_all_releases</pre></td>
655
763
  </tr>
656
764
 
657
765
 
658
766
 
659
767
  <tr class="marked">
660
- <td><pre><a name="line101">101</a> @releases = Release.all</pre></td>
768
+ <td><pre><a name="line119">119</a> @releases = Release.all</pre></td>
661
769
  </tr>
662
770
 
663
771
 
664
772
 
665
773
  <tr class="inferred">
666
- <td><pre><a name="line102">102</a> end</pre></td>
774
+ <td><pre><a name="line120">120</a> end</pre></td>
667
775
  </tr>
668
776
 
669
777
 
670
778
 
671
779
  <tr class="inferred">
672
- <td><pre><a name="line103">103</a> </pre></td>
780
+ <td><pre><a name="line121">121</a> </pre></td>
673
781
  </tr>
674
782
 
675
783
 
676
784
 
677
785
  <tr class="inferred">
678
- <td><pre><a name="line104">104</a> end</pre></td>
786
+ <td><pre><a name="line122">122</a> end</pre></td>
679
787
  </tr>
680
788
 
681
789
 
682
790
 
683
791
  <tr class="inferred">
684
- <td><pre><a name="line105">105</a> </pre></td>
792
+ <td><pre><a name="line123">123</a> </pre></td>
685
793
  </tr>
686
794
 
687
795
  </tbody>
688
796
  </table>
689
797
 
690
- <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>
798
+ <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>
691
799
 
692
800
  </body>
693
801
  </html>