branston 0.4.6 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,7 @@
13
13
  # along with Branston. If not, see <http://www.gnu.org/licenses/>.
14
14
 
15
15
  class StoriesController < ApplicationController
16
-
16
+
17
17
  layout 'main'
18
18
  before_filter :login_required, :except => [:show, :generate_feature]
19
19
  before_filter :retrieve_iterations, :except => [:generate_feature, :show]
@@ -21,7 +21,7 @@ class StoriesController < ApplicationController
21
21
  in_place_edit_for :story, :title
22
22
  in_place_edit_for :story, :description
23
23
  in_place_edit_for :story, :points
24
-
24
+
25
25
  def generate_feature
26
26
  @story = Story.find_by_slug(params[:id])
27
27
  if @story.nil?
@@ -30,25 +30,26 @@ class StoriesController < ApplicationController
30
30
  @story.generate(@story)
31
31
  render :text => 'done'
32
32
  end
33
-
33
+
34
34
  # GET /stories
35
35
  # GET /stories.xml
36
36
  def index
37
37
  @current_stories = Story.for_iteration(@iteration.id).in_progress
38
38
  @backlog_stories = Story.for_iteration(@iteration.id).unassigned
39
+ @quality_assurance_stories = Story.for_iteration(@iteration.id).in_quality_assurance
39
40
  @completed_stories = Story.for_iteration(@iteration.id).completed
40
-
41
+
41
42
  respond_to do |format|
42
43
  format.html # index.html.erb
43
44
  format.xml { render :xml => @stories }
44
45
  end
45
46
  end
46
-
47
+
47
48
  # GET /stories/1
48
49
  # GET /stories/1.xml
49
50
  def show
50
51
  @story = Story.find_by_slug(params[:id])
51
-
52
+
52
53
  respond_to do |format|
53
54
  if @story
54
55
  format.html {
@@ -61,36 +62,36 @@ class StoriesController < ApplicationController
61
62
  else
62
63
  format.html {
63
64
  @iteration = load_iteration
64
- render_optional_error_file 404
65
- }
65
+ render_optional_error_file 404
66
+ }
66
67
  format.all { render :nothing => true, :status => 404 }
67
68
  end
68
69
  end
69
70
  end
70
-
71
+
71
72
  # GET /stories/new
72
73
  # GET /stories/new.xml
73
74
  def new
74
75
  @story = Story.new(:iteration => @iteration)
75
-
76
+
76
77
  respond_to do |format|
77
78
  format.html # new.html.erb
78
79
  format.xml { render :xml => @story }
79
80
  end
80
81
  end
81
-
82
+
82
83
  # GET /stories/1/edit
83
84
  def edit
84
85
  @story = Story.find_by_slug(params[:id])
85
86
  end
86
-
87
+
87
88
  # POST /stories
88
89
  # POST /stories.xml
89
90
  def create
90
91
  @story = Story.new(params[:story])
91
92
  @story.author = current_user
92
93
  @story.iteration = @iteration
93
-
94
+
94
95
  respond_to do |format|
95
96
  if @story.save
96
97
  flash[:notice] = 'Story was successfully created.'
@@ -102,22 +103,30 @@ class StoriesController < ApplicationController
102
103
  end
103
104
  end
104
105
  end
105
-
106
+
106
107
  # PUT /stories/"1
107
108
  # PUT /stories/1.xml
108
109
  def update
109
110
  @story = Story.find_by_slug(params[:id])
110
-
111
+
111
112
  if params[:story] and params[:story][:status]
112
113
  if params[:story][:status] == 'in_progress'
113
114
  @story.assign
114
115
  end
115
-
116
+
117
+ if params[:story][:status] == 'quality_assurance'
118
+ @story.check_quality
119
+ end
120
+
121
+ if params[:story][:status] == 'new'
122
+ @story.back_to_new
123
+ end
124
+
116
125
  if params[:story][:status] == 'completed'
117
126
  @story.finish
118
127
  end
119
128
  end
120
-
129
+
121
130
  respond_to do |format|
122
131
  if @story.update_attributes(params[:story])
123
132
  flash[:notice] = 'Story was successfully updated.'
@@ -129,31 +138,31 @@ class StoriesController < ApplicationController
129
138
  format.xml { render :xml => @story.errors, :status => :unprocessable_entity }
130
139
  end
131
140
  end
132
-
133
-
141
+
142
+
134
143
  end
135
-
144
+
136
145
  # DELETE /stories/1
137
146
  # DELETE /stories/1.xml
138
147
  def destroy
139
148
  @story = Story.find_by_slug(params[:id])
140
149
  @story.destroy
141
-
150
+
142
151
  respond_to do |format|
143
152
  format.html { redirect_to iteration_stories_path(@iteration) }
144
153
  format.xml { head :ok }
145
154
  end
146
155
  end
147
-
148
-
156
+
157
+
149
158
  private
150
-
159
+
151
160
  def retrieve_iterations
152
161
  @iterations = Iteration.all
153
162
  end
154
-
163
+
155
164
  def load_iteration
156
165
  @iteration = Iteration.find(params[:iteration_id])
157
- end
166
+ end
158
167
  end
159
168
 
@@ -32,6 +32,7 @@ class Story < ActiveRecord::Base
32
32
  #
33
33
  named_scope :unassigned, :conditions => 'status = "new"'
34
34
  named_scope :in_progress, :conditions => 'status = "in_progress"'
35
+ named_scope :in_quality_assurance, :conditions => 'status = "quality_assurance"'
35
36
  named_scope :completed, :conditions => 'status = "completed"'
36
37
  named_scope :for_iteration, lambda { |id| { :conditions => ['iteration_id = ?',
37
38
  id] } }
@@ -39,30 +40,44 @@ class Story < ActiveRecord::Base
39
40
  before_save :set_slug
40
41
 
41
42
  # Story states
43
+ #
42
44
  # New - A story that has been drafted, but is not being worked on
45
+ #
43
46
  # In Progress - A story that is being actioned by a member of the development
44
47
  # team
48
+ #
49
+ # Quality Assurance - A story that is being tested by the QA department
50
+ #
45
51
  # Completed - A story that has been implemented and tested by the development
46
52
  # team
47
53
  #
48
54
  state_machine :status, :initial => :new do
49
55
  state :new
50
56
  state :in_progress
57
+ state :quality_assurance
51
58
  state :completed
52
59
 
53
60
  event :assign do
54
- transition :new => :in_progress
61
+ transition [:new, :quality_assurance, :completed] => :in_progress
62
+ end
63
+
64
+ event :check_quality do
65
+ transition [:in_progress, :quality_assurance, :completed] => :quality_assurance
55
66
  end
56
67
 
57
68
  event :finish do
58
- transition :in_progress => :completed
69
+ transition [:in_progress, :quality_assurance] => :completed
70
+ end
71
+
72
+ event :back_to_new do
73
+ transition :in_progress => :new
59
74
  end
60
75
 
61
76
  after_transition any => :completed do |story, transition|
62
77
  story.completed_date = Date.today
63
78
  end
64
79
  end
65
-
80
+
66
81
  attr_protected :status
67
82
 
68
83
  def to_param
@@ -9,7 +9,7 @@
9
9
  <% unless params[:action] = "new" %>
10
10
  <p class="form-fields">
11
11
  <%= f.label :status %>
12
- <%= f.select :status, ['new', 'in_progress', 'completed'] %>
12
+ <%= f.select :status, ['new', 'in_progress', 'quality_assurance', 'completed'] %>
13
13
  </p>
14
14
  <% end %>
15
15
  <p class="form-fields">
@@ -24,5 +24,4 @@
24
24
  <% else %>
25
25
  <%=f.hidden_field :iteration_id %>
26
26
  <% end %>
27
-
28
27
 
@@ -22,7 +22,7 @@
22
22
  </div>
23
23
  <div>
24
24
  <%= f.label :status %>
25
- <%= f.select :status, ['new', 'in_progress', 'completed'], {},
25
+ <%= f.select :status, ['new', 'in_progress', 'quality_assurance', 'completed'], {},
26
26
  :id => element_id(@story, 'status') %>
27
27
  </div>
28
28
  <% unless @iterations.empty? -%>
@@ -33,6 +33,13 @@ document.observe("dom:loaded", function() {
33
33
  <%= render :partial => "story", :locals => { :story => story } %>
34
34
  <% end %>
35
35
  </div>
36
+
37
+ <h3>Quality Assurance Stories</h3>
38
+ <div id="quality_assurance_stories" class="accordion">
39
+ <% @quality_assurance_stories.each do |story| %>
40
+ <%= render :partial => "story", :locals => { :story => story } %>
41
+ <% end %>
42
+ </div>
36
43
  </div>
37
44
 
38
45
  <div id="backlog-wrapper">
@@ -63,3 +70,4 @@ document.observe("dom:loaded", function() {
63
70
  </div>
64
71
 
65
72
  <% end %>
73
+
Binary file
@@ -6,16 +6,16 @@ BRANSTON_HOME= Dir.pwd + '/.branston'
6
6
  PORT = 3970
7
7
 
8
8
  class Branston
9
-
9
+
10
10
  attr_accessor :args
11
-
11
+
12
12
  def initialize(args)
13
13
  self.args = args
14
14
  go()
15
15
  end
16
-
16
+
17
17
  def go
18
-
18
+
19
19
  options = {
20
20
  :Port => PORT,
21
21
  :Host => "0.0.0.0",
@@ -25,29 +25,29 @@ class Branston
25
25
  :path => nil,
26
26
  :directory => BRANSTON_HOME
27
27
  }
28
-
28
+
29
29
  actions = []
30
-
30
+
31
31
  ARGV.clone.options do |opts|
32
32
  opts.on("-i", "--init", String, "Initialise Branston") {
33
- opts.on("-w", "--working=directory", String, "Initialise branston in the given " +
33
+ opts.on("-w", "--working=directory", String, "Initialise branston in the given " +
34
34
  "directory", "Default: .branston") { |v| options[:directory] =v }
35
35
  actions << 'init'
36
36
  }
37
- opts.on("-s", "--server", String, "Run a Branston Server") {
37
+ opts.on("-s", "--server", String, "Run a Branston Server") {
38
38
  opts.on("-p", "--port=port", Integer,
39
39
  "Runs Branston on the specified port.", "Default: #{PORT}") { |v| options[:Port] = v }
40
40
  opts.on("-b", "--binding=ip", String,
41
41
  "Binds Branston to the specified ip.", "Default: 0.0.0.0") { |v| options[:Host] = v }
42
- opts.on("-P", "--path=/path", String, "Runs Branston mounted at a " +
42
+ opts.on("-P", "--path=/path", String, "Runs Branston mounted at a " +
43
43
  "specific path.", "Default: /") { |v| options[:path] = v }
44
- opts.on("-w", "--working=directory", String, "Run branston in the given " +
45
- "directory, the same directory that you branston --initialised into",
44
+ opts.on("-w", "--working=directory", String, "Run branston in the given " +
45
+ "directory, the same directory that you branston --initialised into",
46
46
  "Default: .branston") { |v| options[:directory] =v }
47
47
  opts.on("-fg", "--foreground", String) { |v| options[:foreground] = true }
48
48
  actions << 'server'
49
49
  }
50
- opts.on("-g", "--generate", String, "Generate a feature from a Branston Server") {
50
+ opts.on("-g", "--generate", String, "Generate a feature from a Branston Server") {
51
51
  opts.on("-p", "--port=port", Integer,
52
52
  "Access a branston server on the specified port.", "Default: #{PORT}") { |v| options[:Port] = v }
53
53
  opts.on("-b", "--binding=ip", String,
@@ -59,12 +59,12 @@ class Branston
59
59
  opts.separator ""
60
60
  opts.on("-h", "--help", "Show this help message.") { puts opts; exit }
61
61
  opts.parse!
62
-
62
+
63
63
  if ARGV.empty? or actions.size != 1
64
- puts opts; exit
64
+ puts opts; exit
65
65
  end
66
66
  end
67
-
67
+
68
68
  if actions.first == 'server'
69
69
  launch_branston_server(options)
70
70
  elsif actions.first == 'generator'
@@ -77,23 +77,23 @@ class Branston
77
77
  initialise_branston(options)
78
78
  end
79
79
  end
80
-
80
+
81
81
  private
82
-
82
+
83
83
  def initialise_branston(options)
84
84
  File.makedirs options[:directory]
85
85
  unless File.exists? options[:directory] + "/branston.sqlite3"
86
- File.copy File.dirname(__FILE__) + "/../db/pristine.sqlite3",
86
+ File.copy File.dirname(__FILE__) + "/../db/pristine.sqlite3",
87
87
  options[:directory] + "/branston.sqlite3"
88
88
  end
89
-
89
+
90
90
  %w(cache pids sessions sockets).each do |dir_to_make|
91
91
  FileUtils.mkdir_p(File.join(options[:directory], dir_to_make))
92
92
  end
93
-
93
+
94
94
  puts "Successfully initialised branston in #{options[:directory]}"
95
95
  end
96
-
96
+
97
97
  def launch_branston_server(options)
98
98
  require 'active_support'
99
99
  require 'action_controller'
@@ -106,19 +106,19 @@ class Branston
106
106
  server = Rack::Handler::WEBrick
107
107
  end
108
108
  end
109
-
109
+
110
110
  puts "Branston server starting on http://#{options[:Host]}:#{options[:Port]}#{options[:path]}"
111
-
111
+
112
112
  unless options[:foreground]
113
113
  Process.daemon
114
114
  pid = options[:directory] + "/pids/server.pid"
115
115
  File.open(pid, 'w'){ |f| f.write(Process.pid) }
116
116
  at_exit { File.delete(pid) if File.exist?(pid) }
117
117
  end
118
-
118
+
119
119
  ENV["RAILS_ENV"] = options[:environment]
120
120
  RAILS_ENV.replace(options[:environment]) if defined?(RAILS_ENV)
121
-
121
+
122
122
  $BRANSTON_LOG_PATH = options[:directory] + '/log'
123
123
  require File.dirname(__FILE__) + "/../config/environment"
124
124
 
@@ -129,23 +129,23 @@ class Branston
129
129
  :timeout => 5000
130
130
  )
131
131
  inner_app = ActionController::Dispatcher.new
132
-
132
+
133
133
  if options[:path].nil?
134
134
  map_path = "/"
135
135
  else
136
136
  ActionController::Base.relative_url_root = options[:path]
137
137
  map_path = options[:path]
138
138
  end
139
-
140
- app = Rack::Builder.new {
139
+
140
+ app = Rack::Builder.new {
141
141
  map map_path do
142
- use Rails::Rack::Static
142
+ use Rails::Rack::Static
143
143
  run inner_app
144
144
  end
145
145
  }.to_app
146
-
146
+
147
147
  trap(:INT) { exit }
148
-
148
+
149
149
  begin
150
150
  server.run(app, options.merge(:AccessLog => []))
151
151
  ensure
@@ -3735,3 +3735,2521 @@ Processing StoriesController#show to xml (for 127.0.0.1 at 2010-01-07 17:32:03)
3735
3735
  Precondition Load (0.4ms) SELECT * FROM "preconditions" WHERE ("preconditions".scenario_id = 2) 
3736
3736
  Outcome Load (0.4ms) SELECT * FROM "outcomes" WHERE ("outcomes".scenario_id = 2) 
3737
3737
  Completed in 194ms (View: 1, DB: 3) | 200 OK [http://localhost/stories/add-video.xml]
3738
+
3739
+
3740
+ Processing IterationsController#index (for 127.0.0.1 at 2010-01-13 13:17:49) [GET]
3741
+ Redirected to http://localhost:3000/session/new
3742
+ Filter chain halted as [:login_required] rendered_or_redirected.
3743
+ Completed in 35ms (DB: 0) | 302 Found [http://localhost/]
3744
+
3745
+
3746
+ Processing SessionsController#new (for 127.0.0.1 at 2010-01-13 13:17:49) [GET]
3747
+ Rendering template within layouts/main
3748
+ Rendering sessions/new
3749
+ Rendered layouts/_meta (0.5ms)
3750
+ Rendered layouts/_header (1.0ms)
3751
+ Rendered layouts/_footer (1.0ms)
3752
+ Completed in 86ms (View: 83, DB: 0) | 200 OK [http://localhost/session/new]
3753
+
3754
+
3755
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:17:52) [POST]
3756
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave.hrycyszyn@headlondon.com", "password"=>"password"}
3757
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave.hrycyszyn@headlondon.com') LIMIT 1
3758
+ Failed login for 'dave.hrycyszyn@headlondon.com' from 127.0.0.1 at Wed Jan 13 13:17:52 UTC 2010
3759
+ Rendering template within layouts/main
3760
+ Rendering sessions/new
3761
+ Rendered layouts/_meta (0.1ms)
3762
+ Rendered layouts/_header (0.2ms)
3763
+ Rendered layouts/_footer (0.4ms)
3764
+ Completed in 109ms (View: 9, DB: 0) | 200 OK [http://localhost/session]
3765
+
3766
+
3767
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:17:54) [POST]
3768
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave.hrycyszyn@headlondon.com", "password"=>"password"}
3769
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave.hrycyszyn@headlondon.com') LIMIT 1
3770
+ Failed login for 'dave.hrycyszyn@headlondon.com' from 127.0.0.1 at Wed Jan 13 13:17:54 UTC 2010
3771
+ Rendering template within layouts/main
3772
+ Rendering sessions/new
3773
+ Rendered layouts/_meta (0.1ms)
3774
+ Rendered layouts/_header (0.2ms)
3775
+ Rendered layouts/_footer (0.4ms)
3776
+ Completed in 23ms (View: 8, DB: 0) | 200 OK [http://localhost/session]
3777
+
3778
+
3779
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:17:55) [POST]
3780
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave.hrycyszyn@headlondon.com", "password"=>"password"}
3781
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave.hrycyszyn@headlondon.com') LIMIT 1
3782
+ Failed login for 'dave.hrycyszyn@headlondon.com' from 127.0.0.1 at Wed Jan 13 13:17:55 UTC 2010
3783
+ Rendering template within layouts/main
3784
+ Rendering sessions/new
3785
+ Rendered layouts/_meta (0.1ms)
3786
+ Rendered layouts/_header (0.2ms)
3787
+ Rendered layouts/_footer (0.4ms)
3788
+ Completed in 22ms (View: 8, DB: 0) | 200 OK [http://localhost/session]
3789
+
3790
+
3791
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:17:56) [POST]
3792
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave.hrycyszyn@headlondon.com", "password"=>"password"}
3793
+ User Load (0.2ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave.hrycyszyn@headlondon.com') LIMIT 1
3794
+ Failed login for 'dave.hrycyszyn@headlondon.com' from 127.0.0.1 at Wed Jan 13 13:17:56 UTC 2010
3795
+ Rendering template within layouts/main
3796
+ Rendering sessions/new
3797
+ Rendered layouts/_meta (0.1ms)
3798
+ Rendered layouts/_header (0.2ms)
3799
+ Rendered layouts/_footer (0.4ms)
3800
+ Completed in 25ms (View: 8, DB: 0) | 200 OK [http://localhost/session]
3801
+
3802
+
3803
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:18:03) [POST]
3804
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave", "password"=>"sammy69"}
3805
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave') LIMIT 1
3806
+ Failed login for 'dave' from 127.0.0.1 at Wed Jan 13 13:18:03 UTC 2010
3807
+ Rendering template within layouts/main
3808
+ Rendering sessions/new
3809
+ Rendered layouts/_meta (0.1ms)
3810
+ Rendered layouts/_header (0.2ms)
3811
+ Rendered layouts/_footer (0.4ms)
3812
+ Completed in 27ms (View: 8, DB: 0) | 200 OK [http://localhost/session]
3813
+
3814
+
3815
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:18:06) [POST]
3816
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave", "password"=>"sammy72"}
3817
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave') LIMIT 1
3818
+ Failed login for 'dave' from 127.0.0.1 at Wed Jan 13 13:18:06 UTC 2010
3819
+ Rendering template within layouts/main
3820
+ Rendering sessions/new
3821
+ Rendered layouts/_meta (0.1ms)
3822
+ Rendered layouts/_header (0.2ms)
3823
+ Rendered layouts/_footer (0.4ms)
3824
+ Completed in 26ms (View: 8, DB: 0) | 200 OK [http://localhost/session]
3825
+
3826
+
3827
+ Processing SessionsController#create (for 127.0.0.1 at 2010-01-13 13:18:09) [POST]
3828
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"hYgGzO+oiAacecrKkWQBIyFMIXQ7+SkrvDtg4bEJPls=", "login"=>"dave", "password"=>"password"}
3829
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave') LIMIT 1
3830
+ Redirected to http://localhost:3000/
3831
+ Completed in 19ms (DB: 0) | 302 Found [http://localhost/session]
3832
+
3833
+
3834
+ Processing IterationsController#index (for 127.0.0.1 at 2010-01-13 13:18:09) [GET]
3835
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3836
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
3837
+ Rendering template within layouts/main
3838
+ Rendering iterations/index
3839
+ Rendered layouts/_meta (0.1ms)
3840
+ Rendered layouts/_header (0.2ms)
3841
+ Rendered layouts/_footer (0.4ms)
3842
+ Completed in 208ms (View: 185, DB: 1) | 200 OK [http://localhost/]
3843
+
3844
+
3845
+ Processing IterationsController#show (for 127.0.0.1 at 2010-01-13 13:18:11) [GET]
3846
+ Parameters: {"id"=>"1"}
3847
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3848
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
3849
+ Story Load (0.3ms) SELECT SUM(points) AS points,
3850
+ completed_date
3851
+ FROM stories
3852
+ WHERE iteration_id = 1
3853
+ AND status = 'completed'
3854
+ GROUP BY completed_date
3855
+ ORDER bY completed_date
3856
+ Rendering template within layouts/main
3857
+ Rendering iterations/show
3858
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
3859
+ Story Load (1.2ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
3860
+ Rendered layouts/_meta (0.1ms)
3861
+ Rendered layouts/_header (0.3ms)
3862
+ Rendered layouts/_footer (0.4ms)
3863
+ Completed in 134ms (View: 92, DB: 3) | 200 OK [http://localhost/iterations/1]
3864
+
3865
+
3866
+ Processing IterationsController#index (for 127.0.0.1 at 2010-01-13 13:18:19) [GET]
3867
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3868
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
3869
+ Rendering template within layouts/main
3870
+ Rendering iterations/index
3871
+ Rendered layouts/_meta (0.1ms)
3872
+ Rendered layouts/_header (0.2ms)
3873
+ Rendered layouts/_footer (0.4ms)
3874
+ Completed in 38ms (View: 15, DB: 1) | 200 OK [http://localhost/iterations]
3875
+
3876
+
3877
+ Processing IterationsController#show (for 127.0.0.1 at 2010-01-13 13:18:21) [GET]
3878
+ Parameters: {"id"=>"1"}
3879
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3880
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
3881
+ Story Load (0.3ms) SELECT SUM(points) AS points,
3882
+ completed_date
3883
+ FROM stories
3884
+ WHERE iteration_id = 1
3885
+ AND status = 'completed'
3886
+ GROUP BY completed_date
3887
+ ORDER bY completed_date
3888
+ Rendering template within layouts/main
3889
+ Rendering iterations/show
3890
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
3891
+ Story Load (1.2ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
3892
+ Rendered layouts/_meta (0.1ms)
3893
+ Rendered layouts/_header (0.2ms)
3894
+ Rendered layouts/_footer (0.4ms)
3895
+ Completed in 142ms (View: 16, DB: 3) | 200 OK [http://localhost/iterations/1]
3896
+
3897
+
3898
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:07:40) [GET]
3899
+ Redirected to http://localhost:3000/session/new
3900
+ Filter chain halted as [:login_required] rendered_or_redirected.
3901
+ Completed in 81ms (DB: 0) | 302 Found [http://localhost/]
3902
+
3903
+
3904
+ Processing SessionsController#new (for 127.0.0.1 at 2010-02-25 10:07:40) [GET]
3905
+ Rendering template within layouts/main
3906
+ Rendering sessions/new
3907
+ Rendered layouts/_meta (0.6ms)
3908
+ Rendered layouts/_header (1.1ms)
3909
+ Rendered layouts/_footer (8.6ms)
3910
+ Completed in 170ms (View: 167, DB: 0) | 200 OK [http://localhost/session/new]
3911
+
3912
+
3913
+ Processing SessionsController#create (for 127.0.0.1 at 2010-02-25 10:07:46) [POST]
3914
+ Parameters: {"commit"=>"Log in", "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "login"=>"dave", "password"=>"password"}
3915
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."login" = 'dave') LIMIT 1
3916
+ Redirected to http://localhost:3000/
3917
+ Completed in 46ms (DB: 0) | 302 Found [http://localhost/session]
3918
+
3919
+
3920
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:07:46) [GET]
3921
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3922
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
3923
+ Rendering template within layouts/main
3924
+ Rendering iterations/index
3925
+ Rendered layouts/_meta (0.1ms)
3926
+ Rendered layouts/_header (0.2ms)
3927
+ Rendered layouts/_footer (0.4ms)
3928
+ Completed in 178ms (View: 155, DB: 1) | 200 OK [http://localhost/]
3929
+
3930
+
3931
+ Processing IterationsController#show (for 127.0.0.1 at 2010-02-25 10:07:49) [GET]
3932
+ Parameters: {"id"=>"1"}
3933
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3934
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
3935
+ Story Load (0.3ms) SELECT SUM(points) AS points,
3936
+ completed_date
3937
+ FROM stories
3938
+ WHERE iteration_id = 1
3939
+ AND status = 'completed'
3940
+ GROUP BY completed_date
3941
+ ORDER bY completed_date
3942
+ Rendering template within layouts/main
3943
+ Rendering iterations/show
3944
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
3945
+ Story Load (1.1ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
3946
+ Rendered layouts/_meta (0.1ms)
3947
+ Rendered layouts/_header (0.2ms)
3948
+ Rendered layouts/_footer (0.4ms)
3949
+ Completed in 84ms (View: 20, DB: 2) | 200 OK [http://localhost/iterations/1]
3950
+
3951
+
3952
+ Processing ReleasesController#index (for 127.0.0.1 at 2010-02-25 10:07:53) [GET]
3953
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3954
+ Release Load (0.2ms) SELECT * FROM "releases" 
3955
+ Rendering template within layouts/main
3956
+ Rendering releases/index
3957
+ Rendered layouts/_meta (0.1ms)
3958
+ Rendered layouts/_header (0.2ms)
3959
+ Rendered layouts/_footer (0.4ms)
3960
+ Completed in 67ms (View: 46, DB: 1) | 200 OK [http://localhost/releases]
3961
+
3962
+
3963
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:07:53) [GET]
3964
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3965
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
3966
+ Rendering template within layouts/main
3967
+ Rendering iterations/index
3968
+ Rendered layouts/_meta (0.1ms)
3969
+ Rendered layouts/_header (0.2ms)
3970
+ Rendered layouts/_footer (0.4ms)
3971
+ Completed in 37ms (View: 15, DB: 1) | 200 OK [http://localhost/]
3972
+
3973
+
3974
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:07:54) [GET]
3975
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3976
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
3977
+ Rendering template within layouts/main
3978
+ Rendering iterations/index
3979
+ Rendered layouts/_meta (0.1ms)
3980
+ Rendered layouts/_header (0.2ms)
3981
+ Rendered layouts/_footer (0.4ms)
3982
+ Completed in 39ms (View: 15, DB: 1) | 200 OK [http://localhost/iterations]
3983
+
3984
+
3985
+ Processing IterationsController#show (for 127.0.0.1 at 2010-02-25 10:07:56) [GET]
3986
+ Parameters: {"id"=>"1"}
3987
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
3988
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
3989
+ Story Load (0.3ms) SELECT SUM(points) AS points,
3990
+ completed_date
3991
+ FROM stories
3992
+ WHERE iteration_id = 1
3993
+ AND status = 'completed'
3994
+ GROUP BY completed_date
3995
+ ORDER bY completed_date
3996
+ Rendering template within layouts/main
3997
+ Rendering iterations/show
3998
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
3999
+ Story Load (1.2ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
4000
+ Rendered layouts/_meta (0.1ms)
4001
+ Rendered layouts/_header (0.2ms)
4002
+ Rendered layouts/_footer (0.4ms)
4003
+ Completed in 132ms (View: 16, DB: 3) | 200 OK [http://localhost/iterations/1]
4004
+
4005
+
4006
+ Processing IterationsController#edit (for 127.0.0.1 at 2010-02-25 10:08:02) [GET]
4007
+ Parameters: {"id"=>"1"}
4008
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4009
+ Release Load (0.1ms) SELECT * FROM "releases" 
4010
+ CACHE (0.0ms) SELECT * FROM "releases" 
4011
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4012
+ Rendering template within layouts/main
4013
+ Rendering iterations/edit
4014
+ Rendered iterations/_form (33.6ms)
4015
+ Rendered layouts/_meta (0.1ms)
4016
+ Rendered layouts/_header (0.2ms)
4017
+ Rendered layouts/_footer (0.4ms)
4018
+ Completed in 79ms (View: 52, DB: 1) | 200 OK [http://localhost/iterations/1/edit]
4019
+
4020
+
4021
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:08:04) [GET]
4022
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4023
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4024
+ Rendering template within layouts/main
4025
+ Rendering iterations/index
4026
+ Rendered layouts/_meta (0.1ms)
4027
+ Rendered layouts/_header (0.2ms)
4028
+ Rendered layouts/_footer (0.4ms)
4029
+ Completed in 126ms (View: 16, DB: 1) | 200 OK [http://localhost/iterations]
4030
+
4031
+
4032
+ Processing IterationsController#show (for 127.0.0.1 at 2010-02-25 10:45:24) [GET]
4033
+ Parameters: {"id"=>"1"}
4034
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4035
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4036
+ Story Load (5.5ms) SELECT SUM(points) AS points,
4037
+ completed_date
4038
+ FROM stories
4039
+ WHERE iteration_id = 1
4040
+ AND status = 'completed'
4041
+ GROUP BY completed_date
4042
+ ORDER bY completed_date
4043
+ Rendering template within layouts/main
4044
+ Rendering iterations/show
4045
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
4046
+ Story Load (1.2ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
4047
+ Rendered layouts/_meta (0.1ms)
4048
+ Rendered layouts/_header (0.2ms)
4049
+ Rendered layouts/_footer (0.4ms)
4050
+ Completed in 129ms (View: 17, DB: 8) | 200 OK [http://localhost/iterations/1]
4051
+
4052
+
4053
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:45:26) [GET]
4054
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4055
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4056
+ Rendering template within layouts/main
4057
+ Rendering iterations/index
4058
+ Rendered layouts/_meta (0.1ms)
4059
+ Rendered layouts/_header (0.2ms)
4060
+ Rendered layouts/_footer (0.5ms)
4061
+ Completed in 37ms (View: 15, DB: 1) | 200 OK [http://localhost/iterations]
4062
+
4063
+
4064
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:45:27) [GET]
4065
+ Parameters: {"iteration_id"=>"1"}
4066
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4067
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4068
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4069
+ Rendering template within layouts/main
4070
+ Rendering stories/index
4071
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4072
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4073
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4074
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4075
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4076
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4077
+ Rendered stories/_story (205.8ms)
4078
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4079
+ Rendered stories/_story (12.5ms)
4080
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4081
+ Rendered stories/_story (14.2ms)
4082
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4083
+ Rendered stories/_story (11.9ms)
4084
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4085
+ Rendered layouts/_meta (0.1ms)
4086
+ Rendered layouts/_header (0.2ms)
4087
+ Rendered layouts/_footer (0.4ms)
4088
+ Completed in 400ms (View: 274, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4089
+
4090
+
4091
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:45:36) [GET]
4092
+ Parameters: {"iteration_id"=>"1"}
4093
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4094
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4095
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4096
+ Rendering template within layouts/main
4097
+ Rendering stories/index
4098
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4099
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4100
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4101
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4102
+ Story Load (1.0ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4103
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4104
+ Rendered stories/_story (20.1ms)
4105
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4106
+ Rendered stories/_story (12.7ms)
4107
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4108
+ Rendered stories/_story (13.0ms)
4109
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4110
+ Rendered stories/_story (12.0ms)
4111
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4112
+ Rendered layouts/_meta (0.1ms)
4113
+ Rendered layouts/_header (0.2ms)
4114
+ Rendered layouts/_footer (0.4ms)
4115
+ Completed in 228ms (View: 177, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4116
+
4117
+
4118
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:46:11) [GET]
4119
+ Parameters: {"iteration_id"=>"1"}
4120
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4121
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4122
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4123
+ Rendering template within layouts/main
4124
+ Rendering stories/index
4125
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4126
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4127
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4128
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4129
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4130
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4131
+ Rendered stories/_story (19.4ms)
4132
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4133
+ Rendered stories/_story (13.3ms)
4134
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4135
+ Rendered stories/_story (13.8ms)
4136
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4137
+ Rendered stories/_story (13.0ms)
4138
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4139
+ Rendered layouts/_meta (0.1ms)
4140
+ Rendered layouts/_header (0.2ms)
4141
+ Rendered layouts/_footer (0.4ms)
4142
+ Completed in 219ms (View: 78, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4143
+
4144
+
4145
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:46:48) [GET]
4146
+ Parameters: {"iteration_id"=>"1"}
4147
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4148
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4149
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4150
+ Rendering template within layouts/main
4151
+ Rendering stories/index
4152
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4153
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4154
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4155
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4156
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4157
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4158
+ Rendered stories/_story (22.0ms)
4159
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4160
+ Rendered stories/_story (12.2ms)
4161
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4162
+ Rendered stories/_story (13.8ms)
4163
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4164
+ Rendered stories/_story (12.5ms)
4165
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4166
+ Rendered layouts/_meta (0.1ms)
4167
+ Rendered layouts/_header (0.2ms)
4168
+ Rendered layouts/_footer (0.4ms)
4169
+ Completed in 243ms (View: 81, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4170
+
4171
+
4172
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:46:51) [PUT]
4173
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4174
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4175
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4176
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4177
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4178
+ WARNING: Can't mass-assign these protected attributes: status
4179
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4180
+ Redirected to http://localhost:3000/iterations/1/stories
4181
+ Completed in 56ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4182
+
4183
+
4184
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:46:51) [GET]
4185
+ Parameters: {"iteration_id"=>"1"}
4186
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4187
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4188
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4189
+ Rendering template within layouts/main
4190
+ Rendering stories/index
4191
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4192
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4193
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4194
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4195
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4196
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4197
+ Rendered stories/_story (20.9ms)
4198
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4199
+ Rendered stories/_story (13.3ms)
4200
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4201
+ Rendered stories/_story (15.4ms)
4202
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4203
+ Rendered stories/_story (13.0ms)
4204
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4205
+ Rendered layouts/_meta (0.1ms)
4206
+ Rendered layouts/_header (0.2ms)
4207
+ Rendered layouts/_footer (0.4ms)
4208
+ Completed in 155ms (View: 103, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4209
+
4210
+
4211
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:46:55) [PUT]
4212
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4213
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4214
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4215
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4216
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4217
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4218
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:46:55', "status" = 'in_progress' WHERE "id" = 3
4219
+ WARNING: Can't mass-assign these protected attributes: status
4220
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4221
+ Redirected to http://localhost:3000/iterations/1/stories
4222
+ Completed in 101ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4223
+
4224
+
4225
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:46:56) [GET]
4226
+ Parameters: {"iteration_id"=>"1"}
4227
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4228
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4229
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4230
+ Rendering template within layouts/main
4231
+ Rendering stories/index
4232
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4233
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4234
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4235
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4236
+ Rendered stories/_story (18.8ms)
4237
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4238
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4239
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4240
+ Rendered stories/_story (12.8ms)
4241
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4242
+ Rendered stories/_story (14.0ms)
4243
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4244
+ Rendered stories/_story (12.7ms)
4245
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4246
+ Rendered layouts/_meta (0.1ms)
4247
+ Rendered layouts/_header (0.2ms)
4248
+ Rendered layouts/_footer (0.4ms)
4249
+ Completed in 129ms (View: 76, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4250
+
4251
+
4252
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:01) [PUT]
4253
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
4254
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4255
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4256
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4257
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
4258
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
4259
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:47:01', "status" = 'in_progress' WHERE "id" = 4
4260
+ WARNING: Can't mass-assign these protected attributes: status
4261
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
4262
+ Redirected to http://localhost:3000/iterations/1/stories
4263
+ Completed in 90ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
4264
+
4265
+
4266
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:01) [GET]
4267
+ Parameters: {"iteration_id"=>"1"}
4268
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4269
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4270
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4271
+ Rendering template within layouts/main
4272
+ Rendering stories/index
4273
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4274
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4275
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4276
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4277
+ Rendered stories/_story (18.4ms)
4278
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4279
+ Rendered stories/_story (12.7ms)
4280
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4281
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4282
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4283
+ Rendered stories/_story (13.7ms)
4284
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4285
+ Rendered stories/_story (12.4ms)
4286
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4287
+ Rendered layouts/_meta (0.1ms)
4288
+ Rendered layouts/_header (0.2ms)
4289
+ Rendered layouts/_footer (0.4ms)
4290
+ Completed in 223ms (View: 74, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4291
+
4292
+
4293
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:05) [PUT]
4294
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4295
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4296
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4297
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4298
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4299
+ WARNING: Can't mass-assign these protected attributes: status
4300
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4301
+ Redirected to http://localhost:3000/iterations/1/stories
4302
+ Completed in 59ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4303
+
4304
+
4305
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:05) [GET]
4306
+ Parameters: {"iteration_id"=>"1"}
4307
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4308
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4309
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4310
+ Rendering template within layouts/main
4311
+ Rendering stories/index
4312
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4313
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4314
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4315
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4316
+ Rendered stories/_story (18.6ms)
4317
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4318
+ Rendered stories/_story (12.5ms)
4319
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4320
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4321
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4322
+ Rendered stories/_story (13.9ms)
4323
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4324
+ Rendered stories/_story (12.0ms)
4325
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4326
+ Rendered layouts/_meta (0.1ms)
4327
+ Rendered layouts/_header (0.2ms)
4328
+ Rendered layouts/_footer (0.4ms)
4329
+ Completed in 227ms (View: 75, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4330
+
4331
+
4332
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:11) [PUT]
4333
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4334
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4335
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4336
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4337
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4338
+ WARNING: Can't mass-assign these protected attributes: status
4339
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4340
+ Redirected to http://localhost:3000/iterations/1/stories
4341
+ Completed in 58ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4342
+
4343
+
4344
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:11) [GET]
4345
+ Parameters: {"iteration_id"=>"1"}
4346
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4347
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4348
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4349
+ Rendering template within layouts/main
4350
+ Rendering stories/index
4351
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4352
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4353
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4354
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4355
+ Rendered stories/_story (19.0ms)
4356
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4357
+ Rendered stories/_story (13.1ms)
4358
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4359
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4360
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4361
+ Rendered stories/_story (14.0ms)
4362
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4363
+ Rendered stories/_story (12.7ms)
4364
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4365
+ Rendered layouts/_meta (0.1ms)
4366
+ Rendered layouts/_header (0.2ms)
4367
+ Rendered layouts/_footer (0.4ms)
4368
+ Completed in 230ms (View: 76, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4369
+
4370
+
4371
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:31) [PUT]
4372
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4373
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4374
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4375
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4376
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4377
+ WARNING: Can't mass-assign these protected attributes: status
4378
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4379
+ Redirected to http://localhost:3000/iterations/1/stories
4380
+ Completed in 59ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4381
+
4382
+
4383
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:32) [GET]
4384
+ Parameters: {"iteration_id"=>"1"}
4385
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4386
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4387
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4388
+ Rendering template within layouts/main
4389
+ Rendering stories/index
4390
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4391
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4392
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4393
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4394
+ Rendered stories/_story (18.8ms)
4395
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4396
+ Rendered stories/_story (12.8ms)
4397
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4398
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4399
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4400
+ Rendered stories/_story (14.1ms)
4401
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4402
+ Rendered stories/_story (12.4ms)
4403
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4404
+ Rendered layouts/_meta (0.1ms)
4405
+ Rendered layouts/_header (0.2ms)
4406
+ Rendered layouts/_footer (0.4ms)
4407
+ Completed in 227ms (View: 76, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4408
+
4409
+
4410
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:34) [PUT]
4411
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4412
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4413
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4414
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4415
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4416
+ WARNING: Can't mass-assign these protected attributes: status
4417
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4418
+ Redirected to http://localhost:3000/iterations/1/stories
4419
+ Completed in 161ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4420
+
4421
+
4422
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:34) [GET]
4423
+ Parameters: {"iteration_id"=>"1"}
4424
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4425
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4426
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4427
+ Rendering template within layouts/main
4428
+ Rendering stories/index
4429
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4430
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4431
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4432
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4433
+ Rendered stories/_story (19.7ms)
4434
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4435
+ Rendered stories/_story (12.9ms)
4436
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4437
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4438
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4439
+ Rendered stories/_story (14.6ms)
4440
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4441
+ Rendered stories/_story (12.9ms)
4442
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4443
+ Rendered layouts/_meta (0.1ms)
4444
+ Rendered layouts/_header (0.2ms)
4445
+ Rendered layouts/_footer (0.4ms)
4446
+ Completed in 233ms (View: 78, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4447
+
4448
+
4449
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:36) [PUT]
4450
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4451
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4452
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4453
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4454
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4455
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4456
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:47:36', "status" = 'quality_assurance' WHERE "id" = 3
4457
+ WARNING: Can't mass-assign these protected attributes: status
4458
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4459
+ Redirected to http://localhost:3000/iterations/1/stories
4460
+ Completed in 203ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4461
+
4462
+
4463
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:36) [GET]
4464
+ Parameters: {"iteration_id"=>"1"}
4465
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4466
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4467
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4468
+ Rendering template within layouts/main
4469
+ Rendering stories/index
4470
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4471
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4472
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4473
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4474
+ Rendered stories/_story (18.5ms)
4475
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4476
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4477
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4478
+ Rendered stories/_story (14.4ms)
4479
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4480
+ Rendered stories/_story (13.7ms)
4481
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4482
+ Rendered layouts/_meta (0.1ms)
4483
+ Rendered layouts/_header (0.2ms)
4484
+ Rendered layouts/_footer (0.4ms)
4485
+ Completed in 218ms (View: 65, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4486
+
4487
+
4488
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:47:49) [PUT]
4489
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
4490
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4491
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4492
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4493
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
4494
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
4495
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:47:49', "status" = 'quality_assurance' WHERE "id" = 4
4496
+ WARNING: Can't mass-assign these protected attributes: status
4497
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
4498
+ Redirected to http://localhost:3000/iterations/1/stories
4499
+ Completed in 197ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
4500
+
4501
+
4502
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:47:49) [GET]
4503
+ Parameters: {"iteration_id"=>"1"}
4504
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4505
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4506
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4507
+ Rendering template within layouts/main
4508
+ Rendering stories/index
4509
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4510
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4511
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4512
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4513
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4514
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4515
+ Rendered stories/_story (20.5ms)
4516
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4517
+ Rendered stories/_story (13.7ms)
4518
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4519
+ Rendered layouts/_meta (0.1ms)
4520
+ Rendered layouts/_header (0.2ms)
4521
+ Rendered layouts/_footer (0.4ms)
4522
+ Completed in 201ms (View: 52, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4523
+
4524
+
4525
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:48:02) [GET]
4526
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4527
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4528
+ Rendering template within layouts/main
4529
+ Rendering iterations/index
4530
+ Rendered layouts/_meta (0.1ms)
4531
+ Rendered layouts/_header (13.9ms)
4532
+ Rendered layouts/_footer (0.5ms)
4533
+ Completed in 138ms (View: 116, DB: 1) | 200 OK [http://localhost/iterations]
4534
+
4535
+
4536
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:06) [GET]
4537
+ Parameters: {"iteration_id"=>"1"}
4538
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4539
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4540
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4541
+ Rendering template within layouts/main
4542
+ Rendering stories/index
4543
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4544
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4545
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4546
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4547
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4548
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4549
+ Rendered stories/_story (18.8ms)
4550
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4551
+ Rendered stories/_story (12.8ms)
4552
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4553
+ Rendered layouts/_meta (0.1ms)
4554
+ Rendered layouts/_header (0.3ms)
4555
+ Rendered layouts/_footer (0.4ms)
4556
+ Completed in 195ms (View: 147, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4557
+
4558
+
4559
+ Processing IterationsController#show (for 127.0.0.1 at 2010-02-25 10:48:11) [GET]
4560
+ Parameters: {"id"=>"1"}
4561
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4562
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4563
+ Story Load (0.3ms) SELECT SUM(points) AS points,
4564
+ completed_date
4565
+ FROM stories
4566
+ WHERE iteration_id = 1
4567
+ AND status = 'completed'
4568
+ GROUP BY completed_date
4569
+ ORDER bY completed_date
4570
+ Rendering template within layouts/main
4571
+ Rendering iterations/show
4572
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ("stories".iteration_id = 1) 
4573
+ Story Load (1.2ms) SELECT * FROM "stories" WHERE ("stories".iteration_id = 1) 
4574
+ Rendered layouts/_meta (0.1ms)
4575
+ Rendered layouts/_header (0.2ms)
4576
+ Rendered layouts/_footer (0.4ms)
4577
+ Completed in 61ms (View: 15, DB: 3) | 200 OK [http://localhost/iterations/1]
4578
+
4579
+
4580
+ Processing IterationsController#edit (for 127.0.0.1 at 2010-02-25 10:48:16) [GET]
4581
+ Parameters: {"id"=>"1"}
4582
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4583
+ Release Load (0.2ms) SELECT * FROM "releases" 
4584
+ CACHE (0.0ms) SELECT * FROM "releases" 
4585
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4586
+ Rendering template within layouts/main
4587
+ Rendering iterations/edit
4588
+ Rendered iterations/_form (6.3ms)
4589
+ Rendered layouts/_meta (0.1ms)
4590
+ Rendered layouts/_header (0.2ms)
4591
+ Rendered layouts/_footer (0.4ms)
4592
+ Completed in 51ms (View: 18, DB: 1) | 200 OK [http://localhost/iterations/1/edit]
4593
+
4594
+
4595
+ Processing IterationsController#index (for 127.0.0.1 at 2010-02-25 10:48:18) [GET]
4596
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4597
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4598
+ Rendering template within layouts/main
4599
+ Rendering iterations/index
4600
+ Rendered layouts/_meta (0.1ms)
4601
+ Rendered layouts/_header (0.3ms)
4602
+ Rendered layouts/_footer (0.4ms)
4603
+ Completed in 45ms (View: 18, DB: 1) | 200 OK [http://localhost/iterations]
4604
+
4605
+
4606
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:22) [GET]
4607
+ Parameters: {"iteration_id"=>"1"}
4608
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4609
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4610
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4611
+ Rendering template within layouts/main
4612
+ Rendering stories/index
4613
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4614
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4615
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4616
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4617
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4618
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4619
+ Rendered stories/_story (19.4ms)
4620
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4621
+ Rendered stories/_story (12.7ms)
4622
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4623
+ Rendered layouts/_meta (0.1ms)
4624
+ Rendered layouts/_header (0.2ms)
4625
+ Rendered layouts/_footer (0.4ms)
4626
+ Completed in 98ms (View: 48, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4627
+
4628
+
4629
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:48:33) [PUT]
4630
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
4631
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4632
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4633
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4634
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
4635
+ WARNING: Can't mass-assign these protected attributes: status
4636
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4637
+ Redirected to http://localhost:3000/iterations/1/stories
4638
+ Completed in 59ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
4639
+
4640
+
4641
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:33) [GET]
4642
+ Parameters: {"iteration_id"=>"1"}
4643
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4644
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4645
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4646
+ Rendering template within layouts/main
4647
+ Rendering stories/index
4648
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4649
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4650
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4651
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4652
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4653
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4654
+ Rendered stories/_story (19.1ms)
4655
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4656
+ Rendered stories/_story (13.3ms)
4657
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4658
+ Rendered layouts/_meta (0.1ms)
4659
+ Rendered layouts/_header (0.2ms)
4660
+ Rendered layouts/_footer (0.4ms)
4661
+ Completed in 101ms (View: 49, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4662
+
4663
+
4664
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:48:35) [PUT]
4665
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
4666
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4667
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4668
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4669
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
4670
+ WARNING: Can't mass-assign these protected attributes: status
4671
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4672
+ Redirected to http://localhost:3000/iterations/1/stories
4673
+ Completed in 61ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
4674
+
4675
+
4676
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:35) [GET]
4677
+ Parameters: {"iteration_id"=>"1"}
4678
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4679
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4680
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4681
+ Rendering template within layouts/main
4682
+ Rendering stories/index
4683
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4684
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4685
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4686
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4687
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4688
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4689
+ Rendered stories/_story (20.4ms)
4690
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4691
+ Rendered stories/_story (13.5ms)
4692
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4693
+ Rendered layouts/_meta (0.1ms)
4694
+ Rendered layouts/_header (0.2ms)
4695
+ Rendered layouts/_footer (0.4ms)
4696
+ Completed in 207ms (View: 51, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4697
+
4698
+
4699
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:48:48) [PUT]
4700
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
4701
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4702
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4703
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4704
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
4705
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4706
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:48:48', "status" = 'in_progress' WHERE "id" = 5
4707
+ WARNING: Can't mass-assign these protected attributes: status
4708
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4709
+ Redirected to http://localhost:3000/iterations/1/stories
4710
+ Completed in 201ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
4711
+
4712
+
4713
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:48) [GET]
4714
+ Parameters: {"iteration_id"=>"1"}
4715
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4716
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
4717
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4718
+ Rendering template within layouts/main
4719
+ Rendering stories/index
4720
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4721
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4722
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4723
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4724
+ Rendered stories/_story (20.8ms)
4725
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4726
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4727
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4728
+ Rendered stories/_story (13.7ms)
4729
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4730
+ Rendered layouts/_meta (0.1ms)
4731
+ Rendered layouts/_header (0.2ms)
4732
+ Rendered layouts/_footer (0.4ms)
4733
+ Completed in 212ms (View: 52, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4734
+
4735
+
4736
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 10:48:56) [PUT]
4737
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
4738
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4739
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4740
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4741
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
4742
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4743
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 10:48:56', "status" = 'quality_assurance' WHERE "id" = 5
4744
+ WARNING: Can't mass-assign these protected attributes: status
4745
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
4746
+ Redirected to http://localhost:3000/iterations/1/stories
4747
+ Completed in 198ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
4748
+
4749
+
4750
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 10:48:56) [GET]
4751
+ Parameters: {"iteration_id"=>"1"}
4752
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4753
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4754
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4755
+ Rendering template within layouts/main
4756
+ Rendering stories/index
4757
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4758
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4759
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4760
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4761
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4762
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4763
+ Rendered stories/_story (19.3ms)
4764
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4765
+ Rendered layouts/_meta (0.1ms)
4766
+ Rendered layouts/_header (0.2ms)
4767
+ Rendered layouts/_footer (0.4ms)
4768
+ Completed in 189ms (View: 37, DB: 3) | 200 OK [http://localhost/iterations/1/stories]
4769
+
4770
+
4771
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:13:41) [GET]
4772
+ Parameters: {"iteration_id"=>"1"}
4773
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4774
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4775
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4776
+ Rendering template within layouts/main
4777
+ Rendering stories/index
4778
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4779
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4780
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4781
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4782
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4783
+ Rendered stories/_story (21.6ms)
4784
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4785
+ Rendered stories/_story (12.6ms)
4786
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4787
+ Rendered stories/_story (14.0ms)
4788
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4789
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4790
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4791
+ Rendered stories/_story (12.5ms)
4792
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4793
+ Rendered layouts/_meta (0.1ms)
4794
+ Rendered layouts/_header (0.2ms)
4795
+ Rendered layouts/_footer (0.4ms)
4796
+ Completed in 243ms (View: 93, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4797
+
4798
+
4799
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:13:53) [GET]
4800
+ Parameters: {"iteration_id"=>"1"}
4801
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4802
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4803
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4804
+ Rendering template within layouts/main
4805
+ Rendering stories/index
4806
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4807
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4808
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4809
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4810
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4811
+ Rendered stories/_story (18.1ms)
4812
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4813
+ Rendered stories/_story (125.9ms)
4814
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4815
+ Rendered stories/_story (15.0ms)
4816
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4817
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4818
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4819
+ Rendered stories/_story (13.9ms)
4820
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4821
+ Rendered layouts/_meta (0.1ms)
4822
+ Rendered layouts/_header (0.2ms)
4823
+ Rendered layouts/_footer (0.4ms)
4824
+ Completed in 253ms (View: 199, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4825
+
4826
+
4827
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:15:38) [GET]
4828
+ Parameters: {"iteration_id"=>"1"}
4829
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4830
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4831
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4832
+ Rendering template within layouts/main
4833
+ Rendering stories/index
4834
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4835
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4836
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4837
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4838
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4839
+ Rendered stories/_story (19.5ms)
4840
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4841
+ Rendered stories/_story (13.6ms)
4842
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4843
+ Rendered stories/_story (15.2ms)
4844
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4845
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4846
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4847
+ Rendered stories/_story (14.5ms)
4848
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4849
+ Rendered layouts/_meta (0.1ms)
4850
+ Rendered layouts/_header (0.2ms)
4851
+ Rendered layouts/_footer (0.4ms)
4852
+ Completed in 248ms (View: 84, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4853
+
4854
+
4855
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:15:47) [PUT]
4856
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4857
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4858
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4859
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4860
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4861
+ WARNING: Can't mass-assign these protected attributes: status
4862
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4863
+ Redirected to http://localhost:3000/iterations/1/stories
4864
+ Completed in 81ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4865
+
4866
+
4867
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:15:47) [GET]
4868
+ Parameters: {"iteration_id"=>"1"}
4869
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4870
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4871
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4872
+ Rendering template within layouts/main
4873
+ Rendering stories/index
4874
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4875
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4876
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4877
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4878
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4879
+ Rendered stories/_story (19.8ms)
4880
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4881
+ Rendered stories/_story (13.1ms)
4882
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4883
+ Rendered stories/_story (14.9ms)
4884
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4885
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4886
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4887
+ Rendered stories/_story (12.8ms)
4888
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4889
+ Rendered layouts/_meta (0.1ms)
4890
+ Rendered layouts/_header (0.2ms)
4891
+ Rendered layouts/_footer (0.4ms)
4892
+ Completed in 249ms (View: 80, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4893
+
4894
+
4895
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:20:45) [GET]
4896
+ Parameters: {"iteration_id"=>"1"}
4897
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4898
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4899
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4900
+ Rendering template within layouts/main
4901
+ Rendering stories/index
4902
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4903
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4904
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4905
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4906
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4907
+ Rendered stories/_story (18.7ms)
4908
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4909
+ Rendered stories/_story (12.7ms)
4910
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4911
+ Rendered stories/_story (13.8ms)
4912
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4913
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4914
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4915
+ Rendered stories/_story (12.3ms)
4916
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4917
+ Rendered layouts/_meta (0.1ms)
4918
+ Rendered layouts/_header (0.2ms)
4919
+ Rendered layouts/_footer (0.4ms)
4920
+ Completed in 131ms (View: 76, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4921
+
4922
+
4923
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:20:49) [PUT]
4924
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4925
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4926
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4927
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4928
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4929
+ WARNING: Can't mass-assign these protected attributes: status
4930
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4931
+ Redirected to http://localhost:3000/iterations/1/stories
4932
+ Completed in 60ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
4933
+
4934
+
4935
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:20:49) [GET]
4936
+ Parameters: {"iteration_id"=>"1"}
4937
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4938
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4939
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4940
+ Rendering template within layouts/main
4941
+ Rendering stories/index
4942
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4943
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4944
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4945
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4946
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4947
+ Rendered stories/_story (19.2ms)
4948
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4949
+ Rendered stories/_story (12.5ms)
4950
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4951
+ Rendered stories/_story (13.1ms)
4952
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4953
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4954
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4955
+ Rendered stories/_story (14.4ms)
4956
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4957
+ Rendered layouts/_meta (0.1ms)
4958
+ Rendered layouts/_header (0.3ms)
4959
+ Rendered layouts/_footer (0.4ms)
4960
+ Completed in 242ms (View: 189, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4961
+
4962
+
4963
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:12) [GET]
4964
+ Parameters: {"iteration_id"=>"1"}
4965
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4966
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
4967
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4968
+ Rendering template within layouts/main
4969
+ Rendering stories/index
4970
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4971
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4972
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
4973
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
4974
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4975
+ Rendered stories/_story (134.4ms)
4976
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4977
+ Rendered stories/_story (14.0ms)
4978
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4979
+ Rendered stories/_story (15.6ms)
4980
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4981
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
4982
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
4983
+ Rendered stories/_story (14.1ms)
4984
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
4985
+ Rendered layouts/_meta (0.1ms)
4986
+ Rendered layouts/_header (0.2ms)
4987
+ Rendered layouts/_footer (0.4ms)
4988
+ Completed in 247ms (View: 198, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
4989
+
4990
+
4991
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:21:15) [PUT]
4992
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
4993
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
4994
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
4995
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
4996
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
4997
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
4998
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:21:16', "status" = 'in_progress' WHERE "id" = 3
4999
+ WARNING: Can't mass-assign these protected attributes: status
5000
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5001
+ Redirected to http://localhost:3000/iterations/1/stories
5002
+ Completed in 224ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5003
+
5004
+
5005
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:16) [GET]
5006
+ Parameters: {"iteration_id"=>"1"}
5007
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5008
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5009
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5010
+ Rendering template within layouts/main
5011
+ Rendering stories/index
5012
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5013
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5014
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5015
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5016
+ Rendered stories/_story (19.5ms)
5017
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5018
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5019
+ Rendered stories/_story (13.2ms)
5020
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5021
+ Rendered stories/_story (14.7ms)
5022
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5023
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5024
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5025
+ Rendered stories/_story (13.6ms)
5026
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5027
+ Rendered layouts/_meta (0.1ms)
5028
+ Rendered layouts/_header (0.2ms)
5029
+ Rendered layouts/_footer (0.4ms)
5030
+ Completed in 244ms (View: 81, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5031
+
5032
+
5033
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:47) [GET]
5034
+ Parameters: {"iteration_id"=>"1"}
5035
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5036
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5037
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5038
+ Rendering template within layouts/main
5039
+ Rendering stories/index
5040
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5041
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5042
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5043
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5044
+ Rendered stories/_story (18.9ms)
5045
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5046
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5047
+ Rendered stories/_story (13.2ms)
5048
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5049
+ Rendered stories/_story (14.0ms)
5050
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5051
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5052
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5053
+ Rendered stories/_story (13.3ms)
5054
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5055
+ Rendered layouts/_meta (0.1ms)
5056
+ Rendered layouts/_header (0.2ms)
5057
+ Rendered layouts/_footer (0.4ms)
5058
+ Completed in 250ms (View: 79, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5059
+
5060
+
5061
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:21:52) [PUT]
5062
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5063
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5064
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5065
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5066
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5067
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5068
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:21:52', "status" = 'quality_assurance' WHERE "id" = 3
5069
+ WARNING: Can't mass-assign these protected attributes: status
5070
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5071
+ Redirected to http://localhost:3000/iterations/1/stories
5072
+ Completed in 89ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5073
+
5074
+
5075
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:52) [GET]
5076
+ Parameters: {"iteration_id"=>"1"}
5077
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5078
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5079
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5080
+ Rendering template within layouts/main
5081
+ Rendering stories/index
5082
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5083
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5084
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5085
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5086
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5087
+ Rendered stories/_story (19.1ms)
5088
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5089
+ Rendered stories/_story (13.1ms)
5090
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5091
+ Rendered stories/_story (13.5ms)
5092
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5093
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5094
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5095
+ Rendered stories/_story (12.7ms)
5096
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5097
+ Rendered layouts/_meta (0.1ms)
5098
+ Rendered layouts/_header (0.2ms)
5099
+ Rendered layouts/_footer (0.4ms)
5100
+ Completed in 132ms (View: 77, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5101
+
5102
+
5103
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:21:54) [PUT]
5104
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5105
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5106
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5107
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5108
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5109
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5110
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:21:54', "status" = 'in_progress' WHERE "id" = 3
5111
+ WARNING: Can't mass-assign these protected attributes: status
5112
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5113
+ Redirected to http://localhost:3000/iterations/1/stories
5114
+ Completed in 98ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5115
+
5116
+
5117
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:54) [GET]
5118
+ Parameters: {"iteration_id"=>"1"}
5119
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5120
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5121
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5122
+ Rendering template within layouts/main
5123
+ Rendering stories/index
5124
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5125
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5126
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5127
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5128
+ Rendered stories/_story (19.5ms)
5129
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5130
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5131
+ Rendered stories/_story (12.9ms)
5132
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5133
+ Rendered stories/_story (12.9ms)
5134
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5135
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5136
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5137
+ Rendered stories/_story (12.4ms)
5138
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5139
+ Rendered layouts/_meta (0.1ms)
5140
+ Rendered layouts/_header (0.3ms)
5141
+ Rendered layouts/_footer (0.4ms)
5142
+ Completed in 242ms (View: 188, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5143
+
5144
+
5145
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:21:58) [PUT]
5146
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5147
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5148
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
5149
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5150
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5151
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5152
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:21:58', "status" = 'completed' WHERE "id" = 3
5153
+ WARNING: Can't mass-assign these protected attributes: status
5154
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5155
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:21:58', "completed_date" = '2010-02-25' WHERE "id" = 3
5156
+ Redirected to http://localhost:3000/iterations/1/stories
5157
+ Completed in 128ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5158
+
5159
+
5160
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:21:58) [GET]
5161
+ Parameters: {"iteration_id"=>"1"}
5162
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5163
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5164
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5165
+ Rendering template within layouts/main
5166
+ Rendering stories/index
5167
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5168
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5169
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5170
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5171
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5172
+ Rendered stories/_story (18.3ms)
5173
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5174
+ Rendered stories/_story (14.1ms)
5175
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5176
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5177
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5178
+ Rendered stories/_story (121.2ms)
5179
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5180
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5181
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5182
+ Rendered stories/_story (14.4ms)
5183
+ Rendered layouts/_meta (0.1ms)
5184
+ Rendered layouts/_header (0.2ms)
5185
+ Rendered layouts/_footer (0.4ms)
5186
+ Completed in 244ms (View: 189, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5187
+
5188
+
5189
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:22:08) [PUT]
5190
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5191
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5192
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5193
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5194
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5195
+ WARNING: Can't mass-assign these protected attributes: status
5196
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5197
+ Redirected to http://localhost:3000/iterations/1/stories
5198
+ Completed in 60ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5199
+
5200
+
5201
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:08) [GET]
5202
+ Parameters: {"iteration_id"=>"1"}
5203
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5204
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
5205
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5206
+ Rendering template within layouts/main
5207
+ Rendering stories/index
5208
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5209
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5210
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5211
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5212
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5213
+ Rendered stories/_story (18.4ms)
5214
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5215
+ Rendered stories/_story (13.7ms)
5216
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5217
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5218
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5219
+ Rendered stories/_story (14.7ms)
5220
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5221
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5222
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5223
+ Rendered stories/_story (14.9ms)
5224
+ Rendered layouts/_meta (0.1ms)
5225
+ Rendered layouts/_header (0.2ms)
5226
+ Rendered layouts/_footer (0.4ms)
5227
+ Completed in 249ms (View: 194, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5228
+
5229
+
5230
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:37) [GET]
5231
+ Parameters: {"iteration_id"=>"1"}
5232
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5233
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5234
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5235
+ Rendering template within layouts/main
5236
+ Rendering stories/index
5237
+ SQL (15.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5238
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5239
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5240
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5241
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5242
+ Rendered stories/_story (19.8ms)
5243
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5244
+ Rendered stories/_story (15.3ms)
5245
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5246
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5247
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5248
+ Rendered stories/_story (14.0ms)
5249
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5250
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5251
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5252
+ Rendered stories/_story (13.9ms)
5253
+ Rendered layouts/_meta (0.1ms)
5254
+ Rendered layouts/_header (0.2ms)
5255
+ Rendered layouts/_footer (0.4ms)
5256
+ Completed in 258ms (View: 191, DB: 20) | 200 OK [http://localhost/iterations/1/stories]
5257
+
5258
+
5259
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:22:40) [PUT]
5260
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5261
+ User Load (0.8ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5262
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5263
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5264
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5265
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5266
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:22:40', "status" = 'in_progress' WHERE "id" = 3
5267
+ WARNING: Can't mass-assign these protected attributes: status
5268
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5269
+ Redirected to http://localhost:3000/iterations/1/stories
5270
+ Completed in 234ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5271
+
5272
+
5273
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:40) [GET]
5274
+ Parameters: {"iteration_id"=>"1"}
5275
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5276
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5277
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5278
+ Rendering template within layouts/main
5279
+ Rendering stories/index
5280
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5281
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5282
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5283
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5284
+ Rendered stories/_story (20.0ms)
5285
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5286
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5287
+ Rendered stories/_story (13.7ms)
5288
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5289
+ Rendered stories/_story (15.5ms)
5290
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5291
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5292
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5293
+ Rendered stories/_story (14.0ms)
5294
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5295
+ Rendered layouts/_meta (0.1ms)
5296
+ Rendered layouts/_header (0.2ms)
5297
+ Rendered layouts/_footer (0.5ms)
5298
+ Completed in 254ms (View: 84, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5299
+
5300
+
5301
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:22:46) [PUT]
5302
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5303
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5304
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5305
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5306
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5307
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5308
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:22:46', "status" = 'completed' WHERE "id" = 3
5309
+ WARNING: Can't mass-assign these protected attributes: status
5310
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5311
+ Redirected to http://localhost:3000/iterations/1/stories
5312
+ Completed in 226ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5313
+
5314
+
5315
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:46) [GET]
5316
+ Parameters: {"iteration_id"=>"1"}
5317
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5318
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
5319
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5320
+ Rendering template within layouts/main
5321
+ Rendering stories/index
5322
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5323
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5324
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5325
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5326
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5327
+ Rendered stories/_story (18.6ms)
5328
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5329
+ Rendered stories/_story (14.9ms)
5330
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5331
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5332
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5333
+ Rendered stories/_story (13.6ms)
5334
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5335
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5336
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5337
+ Rendered stories/_story (13.4ms)
5338
+ Rendered layouts/_meta (0.1ms)
5339
+ Rendered layouts/_header (0.2ms)
5340
+ Rendered layouts/_footer (0.4ms)
5341
+ Completed in 254ms (View: 82, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5342
+
5343
+
5344
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:22:49) [PUT]
5345
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5346
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5347
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5348
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5349
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5350
+ WARNING: Can't mass-assign these protected attributes: status
5351
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5352
+ Redirected to http://localhost:3000/iterations/1/stories
5353
+ Completed in 192ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5354
+
5355
+
5356
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:50) [GET]
5357
+ Parameters: {"iteration_id"=>"1"}
5358
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5359
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5360
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5361
+ Rendering template within layouts/main
5362
+ Rendering stories/index
5363
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5364
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5365
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5366
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5367
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5368
+ Rendered stories/_story (19.2ms)
5369
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5370
+ Rendered stories/_story (15.0ms)
5371
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5372
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5373
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5374
+ Rendered stories/_story (14.0ms)
5375
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5376
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5377
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5378
+ Rendered stories/_story (13.1ms)
5379
+ Rendered layouts/_meta (0.1ms)
5380
+ Rendered layouts/_header (0.2ms)
5381
+ Rendered layouts/_footer (0.4ms)
5382
+ Completed in 257ms (View: 83, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5383
+
5384
+
5385
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:22:55) [PUT]
5386
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5387
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5388
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
5389
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5390
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5391
+ WARNING: Can't mass-assign these protected attributes: status
5392
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5393
+ Redirected to http://localhost:3000/iterations/1/stories
5394
+ Completed in 66ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5395
+
5396
+
5397
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:22:55) [GET]
5398
+ Parameters: {"iteration_id"=>"1"}
5399
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5400
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5401
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5402
+ Rendering template within layouts/main
5403
+ Rendering stories/index
5404
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5405
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5406
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5407
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5408
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5409
+ Rendered stories/_story (19.4ms)
5410
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5411
+ Rendered stories/_story (15.5ms)
5412
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5413
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5414
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5415
+ Rendered stories/_story (13.8ms)
5416
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5417
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5418
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5419
+ Rendered stories/_story (13.0ms)
5420
+ Rendered layouts/_meta (0.1ms)
5421
+ Rendered layouts/_header (0.2ms)
5422
+ Rendered layouts/_footer (0.4ms)
5423
+ Completed in 261ms (View: 83, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5424
+
5425
+
5426
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:23:14) [PUT]
5427
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5428
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5429
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5430
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5431
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5432
+ WARNING: Can't mass-assign these protected attributes: status
5433
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5434
+ Redirected to http://localhost:3000/iterations/1/stories
5435
+ Completed in 65ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5436
+
5437
+
5438
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:23:14) [GET]
5439
+ Parameters: {"iteration_id"=>"1"}
5440
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5441
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
5442
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5443
+ Rendering template within layouts/main
5444
+ Rendering stories/index
5445
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5446
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5447
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5448
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5449
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5450
+ Rendered stories/_story (19.0ms)
5451
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5452
+ Rendered stories/_story (14.9ms)
5453
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5454
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5455
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5456
+ Rendered stories/_story (13.4ms)
5457
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5458
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5459
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5460
+ Rendered stories/_story (13.0ms)
5461
+ Rendered layouts/_meta (0.1ms)
5462
+ Rendered layouts/_header (0.2ms)
5463
+ Rendered layouts/_footer (0.4ms)
5464
+ Completed in 260ms (View: 82, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5465
+
5466
+
5467
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:23:18) [PUT]
5468
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5469
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5470
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5471
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5472
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5473
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5474
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:23:18', "status" = 'in_progress' WHERE "id" = 3
5475
+ WARNING: Can't mass-assign these protected attributes: status
5476
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5477
+ Redirected to http://localhost:3000/iterations/1/stories
5478
+ Completed in 95ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5479
+
5480
+
5481
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:23:18) [GET]
5482
+ Parameters: {"iteration_id"=>"1"}
5483
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5484
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5485
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5486
+ Rendering template within layouts/main
5487
+ Rendering stories/index
5488
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5489
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5490
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5491
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5492
+ Rendered stories/_story (19.2ms)
5493
+ Story Load (0.8ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5494
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5495
+ Rendered stories/_story (14.0ms)
5496
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5497
+ Rendered stories/_story (13.6ms)
5498
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5499
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5500
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5501
+ Rendered stories/_story (12.8ms)
5502
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5503
+ Rendered layouts/_meta (0.1ms)
5504
+ Rendered layouts/_header (0.2ms)
5505
+ Rendered layouts/_footer (0.4ms)
5506
+ Completed in 139ms (View: 81, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5507
+
5508
+
5509
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:23:21) [PUT]
5510
+ Parameters: {"story"=>{"points"=>"4", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"add-video", "iteration_id"=>"1"}
5511
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5512
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5513
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5514
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'add-video') LIMIT 1
5515
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5516
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:23:21', "status" = 'completed' WHERE "id" = 3
5517
+ WARNING: Can't mass-assign these protected attributes: status
5518
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Add Video' AND "stories".id <> 3) LIMIT 1
5519
+ Redirected to http://localhost:3000/iterations/1/stories
5520
+ Completed in 98ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/add-video.js]
5521
+
5522
+
5523
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:23:21) [GET]
5524
+ Parameters: {"iteration_id"=>"1"}
5525
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5526
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5527
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5528
+ Rendering template within layouts/main
5529
+ Rendering stories/index
5530
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5531
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5532
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5533
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5534
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5535
+ Rendered stories/_story (18.7ms)
5536
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5537
+ Rendered stories/_story (14.2ms)
5538
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5539
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5540
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5541
+ Rendered stories/_story (12.7ms)
5542
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5543
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5544
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5545
+ Rendered stories/_story (14.9ms)
5546
+ Rendered layouts/_meta (0.1ms)
5547
+ Rendered layouts/_header (0.2ms)
5548
+ Rendered layouts/_footer (0.4ms)
5549
+ Completed in 250ms (View: 192, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5550
+
5551
+
5552
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:23:33) [PUT]
5553
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5554
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5555
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5556
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5557
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5558
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5559
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:23:33', "status" = 'completed' WHERE "id" = 4
5560
+ WARNING: Can't mass-assign these protected attributes: status
5561
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5562
+ Story Update (1.4ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:23:33', "completed_date" = '2010-02-25' WHERE "id" = 4
5563
+ Redirected to http://localhost:3000/iterations/1/stories
5564
+ Completed in 239ms (DB: 4) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5565
+
5566
+
5567
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:23:33) [GET]
5568
+ Parameters: {"iteration_id"=>"1"}
5569
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5570
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5571
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5572
+ Rendering template within layouts/main
5573
+ Rendering stories/index
5574
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5575
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5576
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5577
+ Story Load (0.4ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5578
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5579
+ Rendered stories/_story (19.6ms)
5580
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5581
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5582
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5583
+ Rendered stories/_story (14.6ms)
5584
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5585
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5586
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5587
+ Rendered stories/_story (14.3ms)
5588
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5589
+ Rendered stories/_story (13.1ms)
5590
+ Rendered layouts/_meta (0.1ms)
5591
+ Rendered layouts/_header (0.2ms)
5592
+ Rendered layouts/_footer (0.4ms)
5593
+ Completed in 255ms (View: 199, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5594
+
5595
+
5596
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:24:01) [PUT]
5597
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5598
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5599
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5600
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5601
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5602
+ WARNING: Can't mass-assign these protected attributes: status
5603
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5604
+ Redirected to http://localhost:3000/iterations/1/stories
5605
+ Completed in 182ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5606
+
5607
+
5608
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:01) [GET]
5609
+ Parameters: {"iteration_id"=>"1"}
5610
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5611
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5612
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5613
+ Rendering template within layouts/main
5614
+ Rendering stories/index
5615
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5616
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5617
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5618
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5619
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5620
+ Rendered stories/_story (134.4ms)
5621
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5622
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5623
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5624
+ Rendered stories/_story (14.6ms)
5625
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5626
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5627
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5628
+ Rendered stories/_story (13.8ms)
5629
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5630
+ Rendered stories/_story (13.2ms)
5631
+ Rendered layouts/_meta (0.1ms)
5632
+ Rendered layouts/_header (0.2ms)
5633
+ Rendered layouts/_footer (0.4ms)
5634
+ Completed in 254ms (View: 198, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5635
+
5636
+
5637
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:10) [GET]
5638
+ Parameters: {"iteration_id"=>"1"}
5639
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5640
+ Iteration Load (0.4ms) SELECT * FROM "iterations" 
5641
+ Iteration Load (0.3ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5642
+ Rendering template within layouts/main
5643
+ Rendering stories/index
5644
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5645
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5646
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5647
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5648
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5649
+ Rendered stories/_story (21.4ms)
5650
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5651
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5652
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5653
+ Rendered stories/_story (17.0ms)
5654
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5655
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5656
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5657
+ Rendered stories/_story (14.6ms)
5658
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5659
+ Rendered stories/_story (13.6ms)
5660
+ Rendered layouts/_meta (0.1ms)
5661
+ Rendered layouts/_header (0.3ms)
5662
+ Rendered layouts/_footer (0.4ms)
5663
+ Completed in 263ms (View: 91, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5664
+
5665
+
5666
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:24:14) [PUT]
5667
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
5668
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5669
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5670
+ Iteration Load (0.5ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5671
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
5672
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
5673
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:24:14', "status" = 'completed' WHERE "id" = 5
5674
+ WARNING: Can't mass-assign these protected attributes: status
5675
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
5676
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:24:14', "completed_date" = '2010-02-25' WHERE "id" = 5
5677
+ Redirected to http://localhost:3000/iterations/1/stories
5678
+ Completed in 270ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
5679
+
5680
+
5681
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:15) [GET]
5682
+ Parameters: {"iteration_id"=>"1"}
5683
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5684
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
5685
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5686
+ Rendering template within layouts/main
5687
+ Rendering stories/index
5688
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5689
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5690
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5691
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5692
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5693
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5694
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5695
+ Rendered stories/_story (19.8ms)
5696
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5697
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5698
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5699
+ Rendered stories/_story (14.2ms)
5700
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5701
+ Rendered stories/_story (13.0ms)
5702
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5703
+ Rendered stories/_story (14.0ms)
5704
+ Rendered layouts/_meta (0.1ms)
5705
+ Rendered layouts/_header (0.2ms)
5706
+ Rendered layouts/_footer (0.4ms)
5707
+ Completed in 262ms (View: 83, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5708
+
5709
+
5710
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:24:19) [PUT]
5711
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5712
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5713
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5714
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5715
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5716
+ WARNING: Can't mass-assign these protected attributes: status
5717
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5718
+ Redirected to http://localhost:3000/iterations/1/stories
5719
+ Completed in 68ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5720
+
5721
+
5722
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:19) [GET]
5723
+ Parameters: {"iteration_id"=>"1"}
5724
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5725
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5726
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5727
+ Rendering template within layouts/main
5728
+ Rendering stories/index
5729
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5730
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5731
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5732
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5733
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5734
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5735
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5736
+ Rendered stories/_story (20.0ms)
5737
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5738
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5739
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5740
+ Rendered stories/_story (14.3ms)
5741
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5742
+ Rendered stories/_story (12.7ms)
5743
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5744
+ Rendered stories/_story (14.2ms)
5745
+ Rendered layouts/_meta (0.1ms)
5746
+ Rendered layouts/_header (0.2ms)
5747
+ Rendered layouts/_footer (0.4ms)
5748
+ Completed in 260ms (View: 83, DB: 4) | 200 OK [http://localhost/iterations/1/stories]
5749
+
5750
+
5751
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:24:26) [PUT]
5752
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5753
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5754
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5755
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5756
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5757
+ WARNING: Can't mass-assign these protected attributes: status
5758
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5759
+ Redirected to http://localhost:3000/iterations/1/stories
5760
+ Completed in 69ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5761
+
5762
+
5763
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:26) [GET]
5764
+ Parameters: {"iteration_id"=>"1"}
5765
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5766
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5767
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5768
+ Rendering template within layouts/main
5769
+ Rendering stories/index
5770
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5771
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5772
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5773
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5774
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5775
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5776
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5777
+ Rendered stories/_story (19.6ms)
5778
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5779
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5780
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5781
+ Rendered stories/_story (13.8ms)
5782
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5783
+ Rendered stories/_story (12.2ms)
5784
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5785
+ Rendered stories/_story (13.7ms)
5786
+ Rendered layouts/_meta (0.1ms)
5787
+ Rendered layouts/_header (0.2ms)
5788
+ Rendered layouts/_footer (0.4ms)
5789
+ Completed in 141ms (View: 81, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5790
+
5791
+
5792
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:24:29) [PUT]
5793
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5794
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5795
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5796
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5797
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5798
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5799
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:24:29', "status" = 'in_progress' WHERE "id" = 4
5800
+ WARNING: Can't mass-assign these protected attributes: status
5801
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5802
+ Redirected to http://localhost:3000/iterations/1/stories
5803
+ Completed in 97ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5804
+
5805
+
5806
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:24:29) [GET]
5807
+ Parameters: {"iteration_id"=>"1"}
5808
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5809
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5810
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5811
+ Rendering template within layouts/main
5812
+ Rendering stories/index
5813
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5814
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5815
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5816
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5817
+ Rendered stories/_story (19.0ms)
5818
+ Story Load (0.2ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5819
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5820
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5821
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5822
+ Rendered stories/_story (12.9ms)
5823
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5824
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5825
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5826
+ Rendered stories/_story (123.8ms)
5827
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5828
+ Rendered stories/_story (15.4ms)
5829
+ Rendered layouts/_meta (0.1ms)
5830
+ Rendered layouts/_header (0.2ms)
5831
+ Rendered layouts/_footer (0.4ms)
5832
+ Completed in 252ms (View: 194, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5833
+
5834
+
5835
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:27:20) [PUT]
5836
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"quality_assurance"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"once-upon-a-time", "iteration_id"=>"1"}
5837
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5838
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5839
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5840
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'once-upon-a-time') LIMIT 1
5841
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
5842
+ Story Update (0.6ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:27:20', "status" = 'quality_assurance' WHERE "id" = 5
5843
+ WARNING: Can't mass-assign these protected attributes: status
5844
+ Story Load (0.3ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Once upon a time...' AND "stories".id <> 5) LIMIT 1
5845
+ Redirected to http://localhost:3000/iterations/1/stories
5846
+ Completed in 214ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/once-upon-a-time.js]
5847
+
5848
+
5849
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:27:20) [GET]
5850
+ Parameters: {"iteration_id"=>"1"}
5851
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5852
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5853
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5854
+ Rendering template within layouts/main
5855
+ Rendering stories/index
5856
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5857
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5858
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5859
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5860
+ Rendered stories/_story (134.5ms)
5861
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5862
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5863
+ Rendered stories/_story (15.7ms)
5864
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5865
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5866
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5867
+ Rendered stories/_story (14.2ms)
5868
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5869
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5870
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5871
+ Rendered stories/_story (14.2ms)
5872
+ Rendered layouts/_meta (0.1ms)
5873
+ Rendered layouts/_header (0.2ms)
5874
+ Rendered layouts/_footer (0.4ms)
5875
+ Completed in 259ms (View: 202, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5876
+
5877
+
5878
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:28:11) [PUT]
5879
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5880
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5881
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5882
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5883
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5884
+ WARNING: Can't mass-assign these protected attributes: status
5885
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5886
+ Redirected to http://localhost:3000/iterations/1/stories
5887
+ Completed in 186ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5888
+
5889
+
5890
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:28:11) [GET]
5891
+ Parameters: {"iteration_id"=>"1"}
5892
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5893
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5894
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5895
+ Rendering template within layouts/main
5896
+ Rendering stories/index
5897
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5898
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5899
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5900
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5901
+ Rendered stories/_story (19.7ms)
5902
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5903
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5904
+ Rendered stories/_story (15.7ms)
5905
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5906
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5907
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5908
+ Rendered stories/_story (13.9ms)
5909
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5910
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5911
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5912
+ Rendered stories/_story (14.1ms)
5913
+ Rendered layouts/_meta (0.1ms)
5914
+ Rendered layouts/_header (0.2ms)
5915
+ Rendered layouts/_footer (0.4ms)
5916
+ Completed in 259ms (View: 199, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5917
+
5918
+
5919
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:28:15) [PUT]
5920
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5921
+ User Load (0.4ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5922
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5923
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5924
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5925
+ WARNING: Can't mass-assign these protected attributes: status
5926
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5927
+ Redirected to http://localhost:3000/iterations/1/stories
5928
+ Completed in 187ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5929
+
5930
+
5931
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:28:15) [GET]
5932
+ Parameters: {"iteration_id"=>"1"}
5933
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5934
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5935
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5936
+ Rendering template within layouts/main
5937
+ Rendering stories/index
5938
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5939
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5940
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5941
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5942
+ Rendered stories/_story (19.5ms)
5943
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5944
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5945
+ Rendered stories/_story (15.3ms)
5946
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5947
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5948
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5949
+ Rendered stories/_story (13.7ms)
5950
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5951
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5952
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5953
+ Rendered stories/_story (13.7ms)
5954
+ Rendered layouts/_meta (0.1ms)
5955
+ Rendered layouts/_header (0.2ms)
5956
+ Rendered layouts/_footer (0.4ms)
5957
+ Completed in 255ms (View: 85, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
5958
+
5959
+
5960
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:04) [PUT]
5961
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
5962
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5963
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5964
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5965
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
5966
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5967
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:04', "status" = 'new' WHERE "id" = 4
5968
+ WARNING: Can't mass-assign these protected attributes: status
5969
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
5970
+ Redirected to http://localhost:3000/iterations/1/stories
5971
+ Completed in 242ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
5972
+
5973
+
5974
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:04) [GET]
5975
+ Parameters: {"iteration_id"=>"1"}
5976
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
5977
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
5978
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
5979
+ Rendering template within layouts/main
5980
+ Rendering stories/index
5981
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5982
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5983
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
5984
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
5985
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5986
+ Rendered stories/_story (21.7ms)
5987
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5988
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
5989
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5990
+ Rendered stories/_story (13.8ms)
5991
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5992
+ Rendered stories/_story (14.1ms)
5993
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5994
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
5995
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
5996
+ Rendered stories/_story (13.7ms)
5997
+ Rendered layouts/_meta (0.1ms)
5998
+ Rendered layouts/_header (0.2ms)
5999
+ Rendered layouts/_footer (0.4ms)
6000
+ Completed in 262ms (View: 86, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
6001
+
6002
+
6003
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:07) [PUT]
6004
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
6005
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6006
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
6007
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6008
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
6009
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6010
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:07', "status" = 'in_progress' WHERE "id" = 4
6011
+ WARNING: Can't mass-assign these protected attributes: status
6012
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6013
+ Redirected to http://localhost:3000/iterations/1/stories
6014
+ Completed in 221ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
6015
+
6016
+
6017
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:07) [GET]
6018
+ Parameters: {"iteration_id"=>"1"}
6019
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6020
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6021
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6022
+ Rendering template within layouts/main
6023
+ Rendering stories/index
6024
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6025
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6026
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6027
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6028
+ Rendered stories/_story (19.4ms)
6029
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6030
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6031
+ Rendered stories/_story (15.0ms)
6032
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6033
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6034
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6035
+ Rendered stories/_story (13.7ms)
6036
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6037
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6038
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6039
+ Rendered stories/_story (13.3ms)
6040
+ Rendered layouts/_meta (0.1ms)
6041
+ Rendered layouts/_header (0.2ms)
6042
+ Rendered layouts/_footer (0.4ms)
6043
+ Completed in 259ms (View: 84, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
6044
+
6045
+
6046
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:10) [PUT]
6047
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
6048
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6049
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6050
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6051
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
6052
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6053
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:10', "status" = 'new' WHERE "id" = 4
6054
+ WARNING: Can't mass-assign these protected attributes: status
6055
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6056
+ Redirected to http://localhost:3000/iterations/1/stories
6057
+ Completed in 101ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
6058
+
6059
+
6060
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:10) [GET]
6061
+ Parameters: {"iteration_id"=>"1"}
6062
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6063
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6064
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6065
+ Rendering template within layouts/main
6066
+ Rendering stories/index
6067
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6068
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6069
+ Story Load (0.1ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6070
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6071
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6072
+ Rendered stories/_story (20.9ms)
6073
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6074
+ Story Load (0.9ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6075
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6076
+ Rendered stories/_story (13.3ms)
6077
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6078
+ Rendered stories/_story (13.3ms)
6079
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6080
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6081
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6082
+ Rendered stories/_story (12.8ms)
6083
+ Rendered layouts/_meta (0.1ms)
6084
+ Rendered layouts/_header (0.2ms)
6085
+ Rendered layouts/_footer (0.4ms)
6086
+ Completed in 278ms (View: 82, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
6087
+
6088
+
6089
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:12) [PUT]
6090
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
6091
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6092
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6093
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6094
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
6095
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6096
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:12', "status" = 'in_progress' WHERE "id" = 4
6097
+ WARNING: Can't mass-assign these protected attributes: status
6098
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6099
+ Redirected to http://localhost:3000/iterations/1/stories
6100
+ Completed in 102ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
6101
+
6102
+
6103
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:13) [GET]
6104
+ Parameters: {"iteration_id"=>"1"}
6105
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6106
+ Iteration Load (0.6ms) SELECT * FROM "iterations" 
6107
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6108
+ Rendering template within layouts/main
6109
+ Rendering stories/index
6110
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6111
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6112
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6113
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6114
+ Rendered stories/_story (18.8ms)
6115
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6116
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6117
+ Rendered stories/_story (14.6ms)
6118
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6119
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6120
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6121
+ Rendered stories/_story (12.8ms)
6122
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6123
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6124
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6125
+ Rendered stories/_story (12.8ms)
6126
+ Rendered layouts/_meta (0.1ms)
6127
+ Rendered layouts/_header (0.3ms)
6128
+ Rendered layouts/_footer (0.5ms)
6129
+ Completed in 259ms (View: 197, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
6130
+
6131
+
6132
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:17) [PUT]
6133
+ Parameters: {"story"=>{"points"=>"10", "iteration_id"=>"1", "status"=>"in_progress"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"love-stu", "iteration_id"=>"1"}
6134
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6135
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6136
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6137
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'love-stu') LIMIT 1
6138
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Love Stu' AND "stories".id <> 7) LIMIT 1
6139
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:17', "status" = 'in_progress' WHERE "id" = 7
6140
+ WARNING: Can't mass-assign these protected attributes: status
6141
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'Love Stu' AND "stories".id <> 7) LIMIT 1
6142
+ Redirected to http://localhost:3000/iterations/1/stories
6143
+ Completed in 96ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/love-stu.js]
6144
+
6145
+
6146
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:17) [GET]
6147
+ Parameters: {"iteration_id"=>"1"}
6148
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6149
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6150
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6151
+ Rendering template within layouts/main
6152
+ Rendering stories/index
6153
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6154
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6155
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6156
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6157
+ Rendered stories/_story (18.1ms)
6158
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6159
+ Rendered stories/_story (12.6ms)
6160
+ Story Load (10.5ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6161
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6162
+ Rendered stories/_story (16.1ms)
6163
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6164
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6165
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6166
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6167
+ Rendered stories/_story (14.5ms)
6168
+ Rendered layouts/_meta (0.1ms)
6169
+ Rendered layouts/_header (0.2ms)
6170
+ Rendered layouts/_footer (0.4ms)
6171
+ Completed in 254ms (View: 185, DB: 15) | 200 OK [http://localhost/iterations/1/stories]
6172
+
6173
+
6174
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:19) [PUT]
6175
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"new"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
6176
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6177
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6178
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6179
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
6180
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6181
+ Story Update (0.5ms) UPDATE "stories" SET "updated_at" = '2010-02-25 11:30:19', "status" = 'new' WHERE "id" = 4
6182
+ WARNING: Can't mass-assign these protected attributes: status
6183
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6184
+ Redirected to http://localhost:3000/iterations/1/stories
6185
+ Completed in 219ms (DB: 3) | 302 Found [http://localhost/iterations/1/stories/fff.js]
6186
+
6187
+
6188
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:19) [GET]
6189
+ Parameters: {"iteration_id"=>"1"}
6190
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6191
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6192
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6193
+ Rendering template within layouts/main
6194
+ Rendering stories/index
6195
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6196
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6197
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6198
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6199
+ Rendered stories/_story (20.8ms)
6200
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6201
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6202
+ Rendered stories/_story (15.5ms)
6203
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6204
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6205
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6206
+ Rendered stories/_story (13.7ms)
6207
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6208
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6209
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6210
+ Rendered stories/_story (14.0ms)
6211
+ Rendered layouts/_meta (0.1ms)
6212
+ Rendered layouts/_header (0.2ms)
6213
+ Rendered layouts/_footer (0.4ms)
6214
+ Completed in 261ms (View: 202, DB: 5) | 200 OK [http://localhost/iterations/1/stories]
6215
+
6216
+
6217
+ Processing StoriesController#update to js (for 127.0.0.1 at 2010-02-25 11:30:25) [PUT]
6218
+ Parameters: {"story"=>{"points"=>"1", "iteration_id"=>"1", "status"=>"completed"}, "authenticity_token"=>"l6WNHiW8GD3pbnqVg593xjitBCGUSVIiFP4Nl2yTyPY=", "id"=>"fff", "iteration_id"=>"1"}
6219
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6220
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6221
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6222
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ("stories"."slug" = 'fff') LIMIT 1
6223
+ WARNING: Can't mass-assign these protected attributes: status
6224
+ Story Load (0.2ms) SELECT "stories".id FROM "stories" WHERE ("stories"."title" = 'fff' AND "stories".id <> 4) LIMIT 1
6225
+ Redirected to http://localhost:3000/iterations/1/stories
6226
+ Completed in 189ms (DB: 2) | 302 Found [http://localhost/iterations/1/stories/fff.js]
6227
+
6228
+
6229
+ Processing StoriesController#index (for 127.0.0.1 at 2010-02-25 11:30:25) [GET]
6230
+ Parameters: {"iteration_id"=>"1"}
6231
+ User Load (0.5ms) SELECT * FROM "users" WHERE ("users"."id" = 1) LIMIT 1
6232
+ Iteration Load (0.5ms) SELECT * FROM "iterations" 
6233
+ Iteration Load (0.4ms) SELECT * FROM "iterations" WHERE ("iterations"."id" = 1) 
6234
+ Rendering template within layouts/main
6235
+ Rendering stories/index
6236
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6237
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6238
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "in_progress") AND (iteration_id = 1)) 
6239
+ User Load (0.6ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6240
+ Rendered stories/_story (20.6ms)
6241
+ Story Load (0.7ms) SELECT * FROM "stories" WHERE ((status = "quality_assurance") AND (iteration_id = 1)) 
6242
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6243
+ Rendered stories/_story (15.3ms)
6244
+ CACHE (0.0ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6245
+ Story Load (0.6ms) SELECT * FROM "stories" WHERE ((status = "new") AND (iteration_id = 1)) 
6246
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6247
+ Rendered stories/_story (13.4ms)
6248
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6249
+ Story Load (0.5ms) SELECT * FROM "stories" WHERE ((status = "completed") AND (iteration_id = 1)) 
6250
+ CACHE (0.0ms) SELECT * FROM "users" WHERE ("users"."id" = 1) 
6251
+ Rendered stories/_story (13.3ms)
6252
+ Rendered layouts/_meta (0.1ms)
6253
+ Rendered layouts/_header (0.2ms)
6254
+ Rendered layouts/_footer (0.4ms)
6255
+ Completed in 258ms (View: 86, DB: 5) | 200 OK [http://localhost/iterations/1/stories]