blogit 0.0.10 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,12 +2,18 @@ module Blogit
2
2
  class PostsController < ApplicationController
3
3
 
4
4
  if blogit_conf.include_admin_actions
5
- before_filter :raise_404, except: [:index, :show]
5
+ before_filter :raise_404, except: [:index, :show, :tagged]
6
6
  end
7
7
 
8
- blogit_authenticate(except: [:index, :show])
8
+ blogit_authenticate(except: [:index, :show, :tagged])
9
9
 
10
- expose(:posts) { Post.for_index(params[:page]) }
10
+ expose(:posts) {
11
+ if params[:tag]
12
+ Post.for_index(params[:page]).tagged_with(params[:tag])
13
+ else
14
+ Post.for_index(params[:page])
15
+ end
16
+ }
11
17
  expose(:post) do
12
18
  case action_name
13
19
  when /new|create/
@@ -28,6 +34,9 @@ module Blogit
28
34
  def show
29
35
  end
30
36
 
37
+ def tagged
38
+ render :index
39
+ end
31
40
 
32
41
  def new
33
42
  end
@@ -62,7 +71,7 @@ module Blogit
62
71
  # Don't include admin actions if include_admin_actions is false
63
72
  render file: "#{Rails.root}/public/404.html", status: :not_found, layout: false
64
73
  end
65
-
74
+
66
75
  end
67
76
 
68
77
  end
@@ -0,0 +1,3 @@
1
+ <div class="blogit_empty_message">
2
+ Sorry, there are no posts about "<%= params[:tag] %>".
3
+ </div>
@@ -2,9 +2,16 @@
2
2
  <%= link_to 'New Blog post', new_post_path %>
3
3
  <% end %>
4
4
 
5
- <%= render partial: "blogit/posts/post",
6
- collection: posts,
7
- spacer_template: "blog_post_spacer",
8
- locals: {show_comments_count: true} %>
5
+ <% if posts.any? %>
6
+
7
+ <%= render partial: "blogit/posts/post",
8
+ collection: posts,
9
+ spacer_template: "blog_post_spacer",
10
+ locals: {show_comments_count: true} %>
11
+ <% else %>
12
+
13
+ <%= render partial: "blogit/posts/empty" %>
14
+
15
+ <% end %>
9
16
 
10
17
  <%= render "pagination" %>
data/config/routes.rb CHANGED
@@ -1,9 +1,11 @@
1
1
  Blogit::Engine.routes.draw do
2
2
 
3
- resources :posts do
3
+ resources :posts, except: [:index] do
4
4
  resources :comments, only: [:create, :destroy]
5
5
  end
6
6
 
7
- match "/(page/:page)" => "posts#index"
7
+ match "page/:page" => "posts#index"
8
+ match "posts/tagged/:tag" => 'posts#tagged', as: :tagged_blog_posts
9
+
8
10
  root to: "posts#index"
9
11
  end
@@ -1,3 +1,3 @@
1
1
  module Blogit
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -22121,3 +22121,1960 @@ Started POST "/blog/posts/1-this-is-an-example-post-all-about-lorem-ipsum/commen
22121
22121
  Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_comment.html.erb (7.8ms)
22122
22122
  Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.8ms)
22123
22123
  Completed 200 OK in 121ms (Views: 15.4ms | ActiveRecord: 40.8ms)
22124
+
22125
+
22126
+ Started GET "/" for 127.0.0.1 at 2011-11-18 20:44:38 +0000
22127
+ Processing by Blogit::PostsController#index as HTML
22128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22129
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22130
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (126.9ms)
22131
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (3.2ms)
22132
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22133
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.9ms)
22134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22135
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (137.8ms)
22136
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.8ms)
22137
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.9ms)
22138
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.8ms)
22139
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22140
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.8ms)
22141
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22142
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
22143
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.8ms)
22144
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (288.5ms)
22145
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
22146
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.5ms)
22147
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (354.7ms)
22148
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22149
+ Completed 200 OK in 445ms (Views: 444.1ms | ActiveRecord: 1.0ms)
22150
+
22151
+
22152
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22153
+ Served asset /blogit/comments.css - 200 OK (2ms)
22154
+
22155
+
22156
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22157
+ Served asset /blogit/posts.css - 200 OK (2ms)
22158
+
22159
+
22160
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22161
+ Served asset /application.css - 200 OK (0ms)
22162
+
22163
+
22164
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22165
+ Served asset /blogit.js - 200 OK (0ms)
22166
+
22167
+
22168
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22169
+ Served asset /blogit.css - 200 OK (0ms)
22170
+
22171
+
22172
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22173
+ Served asset /jquery_ujs.js - 200 OK (2ms)
22174
+
22175
+
22176
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22177
+ Served asset /jquery.js - 200 OK (2ms)
22178
+
22179
+
22180
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22181
+ Served asset /application.js - 200 OK (0ms)
22182
+
22183
+
22184
+ Started GET "/" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22185
+ Processing by Blogit::PostsController#index as HTML
22186
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22187
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22188
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.3ms)
22189
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22190
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22191
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22192
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22193
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.2ms)
22194
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.9ms)
22195
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22196
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22197
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22198
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22199
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22200
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.9ms)
22201
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.9ms)
22202
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (52.4ms)
22203
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
22204
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.8ms)
22205
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (64.4ms)
22206
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22207
+ Completed 200 OK in 72ms (Views: 70.4ms | ActiveRecord: 0.9ms)
22208
+
22209
+
22210
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22211
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22212
+
22213
+
22214
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22215
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22216
+
22217
+
22218
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22219
+ Served asset /blogit.css - 304 Not Modified (0ms)
22220
+
22221
+
22222
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22223
+ Served asset /application.css - 304 Not Modified (0ms)
22224
+
22225
+
22226
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22227
+ Served asset /blogit.js - 304 Not Modified (0ms)
22228
+
22229
+
22230
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22231
+ Served asset /jquery.js - 304 Not Modified (0ms)
22232
+
22233
+
22234
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22235
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22236
+
22237
+
22238
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:39 +0000
22239
+ Served asset /application.js - 304 Not Modified (0ms)
22240
+
22241
+
22242
+ Started GET "/blog/posts/1-this-is-an-example-post-all-about-lorem-ipsum" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22243
+ Processing by Blogit::PostsController#show as HTML
22244
+ Parameters: {"id"=>"1-this-is-an-example-post-all-about-lorem-ipsum"}
22245
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1-this-is-an-example-post-all-about-lorem-ipsum"]]
22246
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.0ms)
22247
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22248
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22249
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (7.1ms)
22250
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22251
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.4ms)
22252
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (16.1ms)
22253
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
22254
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22255
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22256
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_comment.html.erb (2.8ms)
22257
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_form.html.erb (3.9ms)
22258
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/show.html.erb within layouts/application (86.4ms)
22259
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22260
+ Completed 200 OK in 94ms (Views: 92.4ms | ActiveRecord: 1.2ms)
22261
+
22262
+
22263
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22264
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22265
+
22266
+
22267
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22268
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22269
+
22270
+
22271
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22272
+ Served asset /blogit.css - 304 Not Modified (0ms)
22273
+
22274
+
22275
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22276
+ Served asset /jquery.js - 304 Not Modified (0ms)
22277
+
22278
+
22279
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22280
+ Served asset /blogit.js - 304 Not Modified (0ms)
22281
+
22282
+
22283
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22284
+ Served asset /application.css - 304 Not Modified (0ms)
22285
+
22286
+
22287
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22288
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22289
+
22290
+
22291
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:44:42 +0000
22292
+ Served asset /application.js - 304 Not Modified (0ms)
22293
+
22294
+
22295
+ Started GET "/blog/posts/1-this-is-an-example-post-all-about-lorem-ipsum?tag=one" for 127.0.0.1 at 2011-11-18 20:46:32 +0000
22296
+ Processing by Blogit::PostsController#show as HTML
22297
+ Parameters: {"tag"=>"one", "id"=>"1-this-is-an-example-post-all-about-lorem-ipsum"}
22298
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1-this-is-an-example-post-all-about-lorem-ipsum"]]
22299
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.2ms)
22300
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (25.7ms)
22301
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22302
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (6.7ms)
22303
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22304
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.0ms)
22305
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (40.4ms)
22306
+ Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1
22307
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22308
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22309
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_comment.html.erb (7.2ms)
22310
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_form.html.erb (3.3ms)
22311
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/show.html.erb within layouts/application (70.3ms)
22312
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22313
+ Completed 200 OK in 78ms (Views: 76.6ms | ActiveRecord: 1.1ms)
22314
+
22315
+
22316
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22317
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22318
+
22319
+
22320
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22321
+ Served asset /application.css - 304 Not Modified (0ms)
22322
+
22323
+
22324
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22325
+ Served asset /blogit.css - 304 Not Modified (0ms)
22326
+
22327
+
22328
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22329
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22330
+
22331
+
22332
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22333
+ Served asset /blogit.js - 304 Not Modified (0ms)
22334
+
22335
+
22336
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22337
+ Served asset /jquery.js - 304 Not Modified (0ms)
22338
+
22339
+
22340
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22341
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22342
+
22343
+
22344
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:46:33 +0000
22345
+ Served asset /application.js - 304 Not Modified (0ms)
22346
+
22347
+
22348
+ Started GET "/blog/posts/tagged?tag=one" for 127.0.0.1 at 2011-11-18 20:47:13 +0000
22349
+ Processing by Blogit::PostsController#tagged as HTML
22350
+ Parameters: {"tag"=>"one"}
22351
+ Rendered public/404.html (0.3ms)
22352
+ Completed 404 Not Found in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
22353
+
22354
+
22355
+ Started GET "/blog/posts/tagged?tag=one" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22356
+ Processing by Blogit::PostsController#tagged as HTML
22357
+ Parameters: {"tag"=>"one"}
22358
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22359
+ Redirected to http://localhost:3000/blog/
22360
+ Completed 302 Found in 7ms
22361
+
22362
+
22363
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22364
+ Processing by Blogit::PostsController#index as HTML
22365
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22366
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22367
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22368
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.7ms)
22369
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22370
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22371
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22372
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.1ms)
22373
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.3ms)
22374
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.8ms)
22375
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22376
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22377
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.6ms)
22378
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22379
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
22380
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22381
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (23.4ms)
22382
+  (0.2ms) SELECT COUNT(*) FROM "blog_posts"
22383
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.1ms)
22384
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (35.7ms)
22385
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22386
+ Completed 200 OK in 43ms (Views: 41.3ms | ActiveRecord: 1.2ms)
22387
+
22388
+
22389
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22390
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22391
+
22392
+
22393
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22394
+ Served asset /blogit.js - 304 Not Modified (0ms)
22395
+
22396
+
22397
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22398
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22399
+
22400
+
22401
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22402
+ Served asset /blogit.css - 304 Not Modified (0ms)
22403
+
22404
+
22405
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22406
+ Served asset /application.css - 304 Not Modified (0ms)
22407
+
22408
+
22409
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22410
+ Served asset /jquery.js - 304 Not Modified (0ms)
22411
+
22412
+
22413
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22414
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22415
+
22416
+
22417
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:25 +0000
22418
+ Served asset /application.js - 304 Not Modified (0ms)
22419
+
22420
+
22421
+ Started GET "/blog/posts/tagged?tag=one" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22422
+ Processing by Blogit::PostsController#tagged as HTML
22423
+ Parameters: {"tag"=>"one"}
22424
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22425
+ Redirected to http://localhost:3000/blog/
22426
+ Completed 302 Found in 6ms
22427
+
22428
+
22429
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22430
+ Processing by Blogit::PostsController#index as HTML
22431
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22432
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22433
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22434
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22435
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22436
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (1.1ms)
22437
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22438
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.4ms)
22439
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22440
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22441
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22442
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22443
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22444
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22445
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
22446
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22447
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (22.7ms)
22448
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
22449
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
22450
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (33.6ms)
22451
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22452
+ Completed 200 OK in 69ms (Views: 67.7ms | ActiveRecord: 0.9ms)
22453
+
22454
+
22455
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22456
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22457
+
22458
+
22459
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22460
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22461
+
22462
+
22463
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22464
+ Served asset /blogit.css - 304 Not Modified (0ms)
22465
+
22466
+
22467
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22468
+ Served asset /application.css - 304 Not Modified (0ms)
22469
+
22470
+
22471
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22472
+ Served asset /jquery.js - 304 Not Modified (0ms)
22473
+
22474
+
22475
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22476
+ Served asset /blogit.js - 304 Not Modified (0ms)
22477
+
22478
+
22479
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22480
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22481
+
22482
+
22483
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:47:39 +0000
22484
+ Served asset /application.js - 304 Not Modified (0ms)
22485
+
22486
+
22487
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22488
+ Processing by Blogit::PostsController#index as HTML
22489
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22490
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22491
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22492
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22493
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22494
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22495
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22496
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.5ms)
22497
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22498
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22499
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22500
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22501
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22502
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22503
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
22504
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22505
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (22.4ms)
22506
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
22507
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
22508
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (62.7ms)
22509
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22510
+ Completed 200 OK in 71ms (Views: 69.4ms | ActiveRecord: 1.0ms)
22511
+
22512
+
22513
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22514
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22515
+
22516
+
22517
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22518
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22519
+
22520
+
22521
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22522
+ Served asset /blogit.css - 304 Not Modified (0ms)
22523
+
22524
+
22525
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22526
+ Served asset /application.css - 304 Not Modified (0ms)
22527
+
22528
+
22529
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22530
+ Served asset /blogit.js - 304 Not Modified (0ms)
22531
+
22532
+
22533
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22534
+ Served asset /jquery.js - 304 Not Modified (0ms)
22535
+
22536
+
22537
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22538
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22539
+
22540
+
22541
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:10 +0000
22542
+ Served asset /application.js - 304 Not Modified (0ms)
22543
+
22544
+
22545
+ Started GET "/blog/posts/tagged?tag=one" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22546
+ Processing by Blogit::PostsController#tagged as HTML
22547
+ Parameters: {"tag"=>"one"}
22548
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22549
+ Redirected to http://localhost:3000/blog/
22550
+ Completed 302 Found in 6ms
22551
+
22552
+
22553
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22554
+ Processing by Blogit::PostsController#index as HTML
22555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22556
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22557
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22558
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22559
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22560
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22561
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22562
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.2ms)
22563
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.1ms)
22564
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22565
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22566
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22567
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22568
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22569
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
22570
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22571
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (21.7ms)
22572
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
22573
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.8ms)
22574
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (32.7ms)
22575
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22576
+ Completed 200 OK in 40ms (Views: 38.4ms | ActiveRecord: 0.9ms)
22577
+
22578
+
22579
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22580
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22581
+
22582
+
22583
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22584
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22585
+
22586
+
22587
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22588
+ Served asset /blogit.css - 304 Not Modified (0ms)
22589
+
22590
+
22591
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22592
+ Served asset /application.css - 304 Not Modified (0ms)
22593
+
22594
+
22595
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22596
+ Served asset /blogit.js - 304 Not Modified (0ms)
22597
+
22598
+
22599
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22600
+ Served asset /jquery.js - 304 Not Modified (0ms)
22601
+
22602
+
22603
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22604
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22605
+
22606
+
22607
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:48:17 +0000
22608
+ Served asset /application.js - 304 Not Modified (0ms)
22609
+
22610
+
22611
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22612
+ Processing by Blogit::PostsController#index as HTML
22613
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22614
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22615
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22616
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22617
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22618
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22619
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22620
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.4ms)
22621
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22622
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22623
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22624
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22625
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22626
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22627
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.9ms)
22628
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.0ms)
22629
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (22.7ms)
22630
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
22631
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
22632
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (61.9ms)
22633
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22634
+ Completed 200 OK in 69ms (Views: 68.0ms | ActiveRecord: 0.9ms)
22635
+
22636
+
22637
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22638
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22639
+
22640
+
22641
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22642
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22643
+
22644
+
22645
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22646
+ Served asset /blogit.css - 304 Not Modified (0ms)
22647
+
22648
+
22649
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22650
+ Served asset /application.css - 304 Not Modified (0ms)
22651
+
22652
+
22653
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22654
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22655
+
22656
+
22657
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22658
+ Served asset /blogit.js - 304 Not Modified (0ms)
22659
+
22660
+
22661
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22662
+ Served asset /jquery.js - 304 Not Modified (0ms)
22663
+
22664
+
22665
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:27 +0000
22666
+ Served asset /application.js - 304 Not Modified (0ms)
22667
+
22668
+
22669
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22670
+ Processing by Blogit::PostsController#index as HTML
22671
+ Parameters: {"tag"=>"sex"}
22672
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22673
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22674
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22675
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22676
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22677
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22678
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22679
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.2ms)
22680
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22681
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22682
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22683
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22684
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22685
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22686
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
22687
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22688
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (22.0ms)
22689
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
22690
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
22691
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (32.3ms)
22692
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22693
+ Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 0.9ms)
22694
+
22695
+
22696
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22697
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22698
+
22699
+
22700
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22701
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22702
+
22703
+
22704
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22705
+ Served asset /blogit.css - 304 Not Modified (0ms)
22706
+
22707
+
22708
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22709
+ Served asset /blogit.js - 304 Not Modified (0ms)
22710
+
22711
+
22712
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22713
+ Served asset /application.css - 304 Not Modified (0ms)
22714
+
22715
+
22716
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22717
+ Served asset /jquery.js - 304 Not Modified (0ms)
22718
+
22719
+
22720
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22721
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22722
+
22723
+
22724
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:37 +0000
22725
+ Served asset /application.js - 304 Not Modified (0ms)
22726
+
22727
+
22728
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22729
+ Processing by Blogit::PostsController#index as HTML
22730
+ Parameters: {"tag"=>"sex"}
22731
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22732
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22733
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
22734
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22735
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22736
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22737
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22738
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (32.6ms)
22739
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22740
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22741
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22742
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22743
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22744
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22745
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
22746
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22747
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (50.0ms)
22748
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
22749
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
22750
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (60.3ms)
22751
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22752
+ Completed 200 OK in 68ms (Views: 66.5ms | ActiveRecord: 0.9ms)
22753
+
22754
+
22755
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22756
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22757
+
22758
+
22759
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22760
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22761
+
22762
+
22763
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22764
+ Served asset /blogit.css - 304 Not Modified (0ms)
22765
+
22766
+
22767
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22768
+ Served asset /application.css - 304 Not Modified (0ms)
22769
+
22770
+
22771
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22772
+ Served asset /blogit.js - 304 Not Modified (0ms)
22773
+
22774
+
22775
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22776
+ Served asset /jquery.js - 304 Not Modified (0ms)
22777
+
22778
+
22779
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22780
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22781
+
22782
+
22783
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:49:42 +0000
22784
+ Served asset /application.js - 304 Not Modified (0ms)
22785
+
22786
+
22787
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22788
+ Processing by Blogit::PostsController#index as HTML
22789
+ Parameters: {"tag"=>"sex"}
22790
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22791
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'sex')
22792
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22793
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
22794
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
22795
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
22796
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (40.1ms)
22797
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22798
+ Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.6ms)
22799
+
22800
+
22801
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22802
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22803
+
22804
+
22805
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22806
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22807
+
22808
+
22809
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22810
+ Served asset /blogit.css - 304 Not Modified (0ms)
22811
+
22812
+
22813
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22814
+ Served asset /application.css - 304 Not Modified (0ms)
22815
+
22816
+
22817
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22818
+ Served asset /jquery.js - 304 Not Modified (0ms)
22819
+
22820
+
22821
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22822
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22823
+
22824
+
22825
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22826
+ Served asset /blogit.js - 304 Not Modified (0ms)
22827
+
22828
+
22829
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:31 +0000
22830
+ Served asset /application.js - 304 Not Modified (0ms)
22831
+
22832
+
22833
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22834
+ Processing by Blogit::PostsController#index as HTML
22835
+ Parameters: {"tag"=>"sex"}
22836
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22837
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'sex')
22838
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22839
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
22840
+  (0.0ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
22841
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.5ms)
22842
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (11.0ms)
22843
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22844
+ Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.5ms)
22845
+
22846
+
22847
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22848
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22849
+
22850
+
22851
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22852
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22853
+
22854
+
22855
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22856
+ Served asset /blogit.css - 304 Not Modified (0ms)
22857
+
22858
+
22859
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22860
+ Served asset /application.css - 304 Not Modified (0ms)
22861
+
22862
+
22863
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22864
+ Served asset /jquery.js - 304 Not Modified (0ms)
22865
+
22866
+
22867
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22868
+ Served asset /blogit.js - 304 Not Modified (0ms)
22869
+
22870
+
22871
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22872
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22873
+
22874
+
22875
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:50:38 +0000
22876
+ Served asset /application.js - 304 Not Modified (0ms)
22877
+
22878
+
22879
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22880
+ Processing by Blogit::PostsController#index as HTML
22881
+ Parameters: {"tag"=>"sex"}
22882
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22883
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22884
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.2ms)
22885
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22886
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22887
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22888
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22889
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (5.0ms)
22890
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22891
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
22892
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
22893
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22894
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22895
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22896
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
22897
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
22898
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (24.2ms)
22899
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
22900
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
22901
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (34.5ms)
22902
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22903
+ Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.9ms)
22904
+
22905
+
22906
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22907
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22908
+
22909
+
22910
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22911
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22912
+
22913
+
22914
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22915
+ Served asset /application.css - 304 Not Modified (0ms)
22916
+
22917
+
22918
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22919
+ Served asset /blogit.css - 304 Not Modified (0ms)
22920
+
22921
+
22922
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22923
+ Served asset /blogit.js - 304 Not Modified (0ms)
22924
+
22925
+
22926
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22927
+ Served asset /jquery.js - 304 Not Modified (0ms)
22928
+
22929
+
22930
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22931
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22932
+
22933
+
22934
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:52:28 +0000
22935
+ Served asset /application.js - 304 Not Modified (0ms)
22936
+
22937
+
22938
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22939
+ Processing by Blogit::PostsController#index as HTML
22940
+ Parameters: {"tag"=>"sex"}
22941
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22942
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'sex')
22943
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
22944
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.2ms)
22945
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
22946
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22947
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
22948
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22949
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.8ms)
22950
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
22951
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (29.7ms)
22952
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.7ms)
22953
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22954
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.6ms)
22955
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
22956
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
22957
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.8ms)
22958
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (53.1ms)
22959
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
22960
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
22961
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (65.2ms)
22962
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
22963
+ Completed 200 OK in 73ms (Views: 71.3ms | ActiveRecord: 1.1ms)
22964
+
22965
+
22966
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22967
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
22968
+
22969
+
22970
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22971
+ Served asset /application.css - 304 Not Modified (0ms)
22972
+
22973
+
22974
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22975
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
22976
+
22977
+
22978
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22979
+ Served asset /blogit.css - 304 Not Modified (0ms)
22980
+
22981
+
22982
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22983
+ Served asset /jquery.js - 304 Not Modified (0ms)
22984
+
22985
+
22986
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22987
+ Served asset /blogit.js - 304 Not Modified (0ms)
22988
+
22989
+
22990
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22991
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
22992
+
22993
+
22994
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 20:53:16 +0000
22995
+ Served asset /application.js - 304 Not Modified (0ms)
22996
+
22997
+
22998
+ Started GET "/blog/posts/about/sex" for 127.0.0.1 at 2011-11-18 20:57:33 +0000
22999
+ Processing by Blogit::PostsController#index as HTML
23000
+ Parameters: {"tag"=>"sex"}
23001
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23002
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (115.2ms)
23003
+ Completed 500 Internal Server Error in 119ms
23004
+
23005
+ ActionView::Template::Error (wrong number of arguments (2 for 1)):
23006
+ 3: <% end %>
23007
+ 4:
23008
+ 5: <%= render partial: "blogit/posts/post",
23009
+ 6: collection: posts,
23010
+ 7: spacer_template: "blog_post_spacer",
23011
+ 8: locals: {show_comments_count: true} %>
23012
+ 9:
23013
+
23014
+
23015
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
23016
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
23017
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
23018
+
23019
+
23020
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:24:00 +0000
23021
+
23022
+ ActionController::RoutingError (No route matches [GET] "/blog/posts/tagged/Ruby%20on%20Rails"):
23023
+
23024
+
23025
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (9.7ms)
23026
+
23027
+
23028
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:24:03 +0000
23029
+
23030
+ ActionController::RoutingError (No route matches [GET] "/blog/posts/tagged/Ruby%20on%20Rails"):
23031
+
23032
+
23033
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
23034
+
23035
+
23036
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23037
+ Processing by Blogit::PostsController#tagged as HTML
23038
+ Parameters: {"tag"=>"Ruby on Rails"}
23039
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23040
+ Redirected to http://localhost:3000/blog/
23041
+ Completed 302 Found in 40ms
23042
+
23043
+
23044
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23045
+ Processing by Blogit::PostsController#index as HTML
23046
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23047
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23048
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23049
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23050
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.4ms)
23051
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (41.9ms)
23052
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23053
+ Completed 200 OK in 64ms (Views: 63.5ms | ActiveRecord: 0.5ms)
23054
+
23055
+
23056
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23057
+ Served asset /blogit/comments.css - 304 Not Modified (1ms)
23058
+
23059
+
23060
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23061
+ Served asset /blogit/posts.css - 304 Not Modified (2ms)
23062
+
23063
+
23064
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23065
+ Served asset /application.css - 200 OK (0ms)
23066
+
23067
+
23068
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23069
+ Served asset /blogit.js - 304 Not Modified (0ms)
23070
+
23071
+
23072
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23073
+ Served asset /blogit.css - 304 Not Modified (0ms)
23074
+
23075
+
23076
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23077
+ Served asset /jquery.js - 200 OK (2ms)
23078
+
23079
+
23080
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23081
+ Served asset /jquery_ujs.js - 200 OK (1ms)
23082
+
23083
+
23084
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:09 +0000
23085
+ Served asset /application.js - 200 OK (0ms)
23086
+
23087
+
23088
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:24:23 +0000
23089
+ Processing by Blogit::PostsController#index as HTML
23090
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23091
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23092
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23093
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23094
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23095
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (10.3ms)
23096
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23097
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.4ms)
23098
+
23099
+
23100
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23101
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23102
+
23103
+
23104
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23105
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23106
+
23107
+
23108
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23109
+ Served asset /blogit.css - 304 Not Modified (0ms)
23110
+
23111
+
23112
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23113
+ Served asset /application.css - 304 Not Modified (0ms)
23114
+
23115
+
23116
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23117
+ Served asset /blogit.js - 304 Not Modified (0ms)
23118
+
23119
+
23120
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23121
+ Served asset /jquery.js - 304 Not Modified (0ms)
23122
+
23123
+
23124
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23125
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23126
+
23127
+
23128
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:24 +0000
23129
+ Served asset /application.js - 304 Not Modified (0ms)
23130
+
23131
+
23132
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:24:27 +0000
23133
+ Processing by Blogit::PostsController#tagged as HTML
23134
+ Parameters: {"tag"=>"Ruby on Rails"}
23135
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23136
+ Redirected to http://localhost:3000/blog/
23137
+ Completed 302 Found in 6ms
23138
+
23139
+
23140
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:24:27 +0000
23141
+ Processing by Blogit::PostsController#index as HTML
23142
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23143
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23144
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23145
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23146
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23147
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.9ms)
23148
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23149
+ Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.4ms)
23150
+
23151
+
23152
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23153
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23154
+
23155
+
23156
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23157
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23158
+
23159
+
23160
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23161
+ Served asset /blogit.css - 304 Not Modified (0ms)
23162
+
23163
+
23164
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23165
+ Served asset /application.css - 304 Not Modified (0ms)
23166
+
23167
+
23168
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23169
+ Served asset /blogit.js - 304 Not Modified (0ms)
23170
+
23171
+
23172
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23173
+ Served asset /jquery.js - 304 Not Modified (0ms)
23174
+
23175
+
23176
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23177
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23178
+
23179
+
23180
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:24:28 +0000
23181
+ Served asset /application.js - 304 Not Modified (0ms)
23182
+
23183
+
23184
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23185
+ Processing by Blogit::PostsController#index as HTML
23186
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23187
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23188
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23189
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23190
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.5ms)
23191
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (10.1ms)
23192
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23193
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.4ms)
23194
+
23195
+
23196
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23197
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23198
+
23199
+
23200
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23201
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23202
+
23203
+
23204
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23205
+ Served asset /blogit.css - 304 Not Modified (0ms)
23206
+
23207
+
23208
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23209
+ Served asset /blogit.js - 304 Not Modified (0ms)
23210
+
23211
+
23212
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23213
+ Served asset /application.css - 304 Not Modified (0ms)
23214
+
23215
+
23216
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23217
+ Served asset /jquery.js - 304 Not Modified (0ms)
23218
+
23219
+
23220
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23221
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23222
+
23223
+
23224
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:05 +0000
23225
+ Served asset /application.js - 304 Not Modified (0ms)
23226
+
23227
+
23228
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23229
+ Processing by Blogit::PostsController#tagged as HTML
23230
+ Parameters: {"tag"=>"Ruby on Rails"}
23231
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23232
+ Redirected to http://localhost:3000/blog/
23233
+ Completed 302 Found in 6ms
23234
+
23235
+
23236
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23237
+ Processing by Blogit::PostsController#index as HTML
23238
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23239
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23240
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23241
+  (0.0ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23242
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.5ms)
23243
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (9.8ms)
23244
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23245
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.4ms)
23246
+
23247
+
23248
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23249
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23250
+
23251
+
23252
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23253
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23254
+
23255
+
23256
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23257
+ Served asset /blogit.css - 304 Not Modified (0ms)
23258
+
23259
+
23260
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23261
+ Served asset /blogit.js - 304 Not Modified (0ms)
23262
+
23263
+
23264
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23265
+ Served asset /application.css - 304 Not Modified (0ms)
23266
+
23267
+
23268
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23269
+ Served asset /jquery.js - 304 Not Modified (0ms)
23270
+
23271
+
23272
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23273
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23274
+
23275
+
23276
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:10 +0000
23277
+ Served asset /application.js - 304 Not Modified (0ms)
23278
+
23279
+
23280
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23281
+ Processing by Blogit::PostsController#tagged as HTML
23282
+ Parameters: {"tag"=>"Ruby on Rails"}
23283
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23284
+ Redirected to http://localhost:3000/blog/
23285
+ Completed 302 Found in 6ms
23286
+
23287
+
23288
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23289
+ Processing by Blogit::PostsController#index as HTML
23290
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23291
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23292
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23293
+  (0.0ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23294
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.5ms)
23295
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (10.0ms)
23296
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23297
+ Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.4ms)
23298
+
23299
+
23300
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23301
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23302
+
23303
+
23304
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23305
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23306
+
23307
+
23308
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23309
+ Served asset /blogit.css - 304 Not Modified (0ms)
23310
+
23311
+
23312
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23313
+ Served asset /application.css - 304 Not Modified (0ms)
23314
+
23315
+
23316
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23317
+ Served asset /blogit.js - 304 Not Modified (0ms)
23318
+
23319
+
23320
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23321
+ Served asset /jquery.js - 304 Not Modified (0ms)
23322
+
23323
+
23324
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23325
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23326
+
23327
+
23328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:27 +0000
23329
+ Served asset /application.js - 304 Not Modified (0ms)
23330
+
23331
+
23332
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23333
+ Processing by Blogit::PostsController#tagged as HTML
23334
+ Parameters: {"tag"=>"Ruby on Rails"}
23335
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23336
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23337
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (85.1ms)
23338
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (1.0ms)
23339
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23340
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.8ms)
23341
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23342
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (139.6ms)
23343
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.6ms)
23344
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
23345
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
23346
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23347
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23348
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23349
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
23350
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23351
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (244.6ms)
23352
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
23353
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23354
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (254.9ms)
23355
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23356
+ Completed 200 OK in 262ms (Views: 260.9ms | ActiveRecord: 0.9ms)
23357
+
23358
+
23359
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23360
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23361
+
23362
+
23363
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23364
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23365
+
23366
+
23367
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23368
+ Served asset /application.css - 304 Not Modified (0ms)
23369
+
23370
+
23371
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23372
+ Served asset /blogit.css - 304 Not Modified (0ms)
23373
+
23374
+
23375
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23376
+ Served asset /blogit.js - 304 Not Modified (0ms)
23377
+
23378
+
23379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23380
+ Served asset /jquery.js - 304 Not Modified (0ms)
23381
+
23382
+
23383
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23384
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23385
+
23386
+
23387
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:25:46 +0000
23388
+ Served asset /application.js - 304 Not Modified (0ms)
23389
+
23390
+
23391
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23392
+ Processing by Blogit::PostsController#tagged as HTML
23393
+ Parameters: {"tag"=>"Ruby on Rails"}
23394
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23395
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'Ruby on Rails')
23396
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23397
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23398
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23399
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
23400
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (11.4ms)
23401
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23402
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.6ms)
23403
+
23404
+
23405
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23406
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23407
+
23408
+
23409
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23410
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23411
+
23412
+
23413
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23414
+ Served asset /blogit.css - 304 Not Modified (0ms)
23415
+
23416
+
23417
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23418
+ Served asset /application.css - 304 Not Modified (0ms)
23419
+
23420
+
23421
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23422
+ Served asset /blogit.js - 304 Not Modified (0ms)
23423
+
23424
+
23425
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23426
+ Served asset /jquery.js - 304 Not Modified (0ms)
23427
+
23428
+
23429
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23430
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23431
+
23432
+
23433
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:26:07 +0000
23434
+ Served asset /application.js - 304 Not Modified (0ms)
23435
+
23436
+
23437
+ Started GET "/blog/posts/tagged/Ruby%20on%20Rails" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23438
+ Processing by Blogit::PostsController#tagged as HTML
23439
+ Parameters: {"tag"=>"Ruby on Rails"}
23440
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23441
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'Ruby on Rails')
23442
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23443
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23444
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23445
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23446
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (11.0ms)
23447
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23448
+ Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.5ms)
23449
+
23450
+
23451
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23452
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23453
+
23454
+
23455
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23456
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23457
+
23458
+
23459
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23460
+ Served asset /blogit.js - 304 Not Modified (0ms)
23461
+
23462
+
23463
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23464
+ Served asset /blogit.css - 304 Not Modified (0ms)
23465
+
23466
+
23467
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23468
+ Served asset /application.css - 304 Not Modified (0ms)
23469
+
23470
+
23471
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23472
+ Served asset /jquery.js - 304 Not Modified (0ms)
23473
+
23474
+
23475
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23476
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23477
+
23478
+
23479
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:33 +0000
23480
+ Served asset /application.js - 304 Not Modified (0ms)
23481
+
23482
+
23483
+ Started GET "/blog/posts/tagged/one" for 127.0.0.1 at 2011-11-18 21:27:37 +0000
23484
+ Processing by Blogit::PostsController#tagged as HTML
23485
+ Parameters: {"tag"=>"one"}
23486
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23487
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'one')
23488
+ Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" JOIN taggings posts_taggings_one_568 ON posts_taggings_one_568.taggable_id = blog_posts.id AND posts_taggings_one_568.taggable_type = 'Blogit::Post' AND posts_taggings_one_568.tag_id = 1 ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23489
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
23490
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23491
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23492
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23493
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23494
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.1ms)
23495
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.1ms)
23496
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
23497
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
23498
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23499
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.4ms)
23500
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23501
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
23502
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23503
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (21.2ms)
23504
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" JOIN taggings posts_taggings_one_568 ON posts_taggings_one_568.taggable_id = blog_posts.id AND posts_taggings_one_568.taggable_type = 'Blogit::Post' AND posts_taggings_one_568.tag_id = 1
23505
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.9ms)
23506
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (166.3ms)
23507
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23508
+ Completed 200 OK in 173ms (Views: 171.6ms | ActiveRecord: 1.2ms)
23509
+
23510
+
23511
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:37 +0000
23512
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23513
+
23514
+
23515
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:37 +0000
23516
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23517
+
23518
+
23519
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23520
+ Served asset /blogit.css - 304 Not Modified (0ms)
23521
+
23522
+
23523
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23524
+ Served asset /blogit.js - 304 Not Modified (0ms)
23525
+
23526
+
23527
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23528
+ Served asset /application.css - 304 Not Modified (0ms)
23529
+
23530
+
23531
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23532
+ Served asset /jquery.js - 304 Not Modified (0ms)
23533
+
23534
+
23535
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23536
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23537
+
23538
+
23539
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:27:38 +0000
23540
+ Served asset /application.js - 304 Not Modified (0ms)
23541
+
23542
+
23543
+ Started GET "/blog/posts/tagged/one" for 127.0.0.1 at 2011-11-18 21:28:23 +0000
23544
+ Processing by Blogit::PostsController#tagged as HTML
23545
+ Parameters: {"tag"=>"one"}
23546
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23547
+ ActsAsTaggableOn::Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'one')
23548
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" JOIN taggings posts_taggings_one_644 ON posts_taggings_one_644.taggable_id = blog_posts.id AND posts_taggings_one_644.taggable_type = 'Blogit::Post' AND posts_taggings_one_644.tag_id = 1 ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23549
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
23550
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23551
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23552
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23553
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23554
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.0ms)
23555
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
23556
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
23557
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
23558
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23559
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23560
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23561
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
23562
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23563
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (21.9ms)
23564
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" JOIN taggings posts_taggings_one_644 ON posts_taggings_one_644.taggable_id = blog_posts.id AND posts_taggings_one_644.taggable_type = 'Blogit::Post' AND posts_taggings_one_644.tag_id = 1
23565
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.9ms)
23566
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (62.0ms)
23567
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23568
+ Completed 500 Internal Server Error in 150ms
23569
+
23570
+ ActionView::Template::Error (No route matches {:controller=>"blogit/posts"}):
23571
+ 15: <%= link_to("log in", main_app.new_session_path) %>
23572
+ 16: <% end %>
23573
+ 17:
23574
+ 18: <h1><%= link_to("My Awesome Blog", root_path) %></h1>
23575
+ 19:
23576
+ 20: <%= yield %>
23577
+ 21: </div>
23578
+ app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb___3921069048761905314_70336287846980'
23579
+
23580
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
23581
+
23582
+
23583
+ Started GET "/blog/posts/tagged/one" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23584
+ Processing by Blogit::PostsController#tagged as HTML
23585
+ Parameters: {"tag"=>"one"}
23586
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23587
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'one')
23588
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" JOIN taggings posts_taggings_one_242 ON posts_taggings_one_242.taggable_id = blog_posts.id AND posts_taggings_one_242.taggable_type = 'Blogit::Post' AND posts_taggings_one_242.tag_id = 1 ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23589
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
23590
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23591
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23592
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23593
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23594
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.1ms)
23595
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
23596
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
23597
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
23598
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23599
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23600
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23601
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
23602
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23603
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (21.6ms)
23604
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" JOIN taggings posts_taggings_one_242 ON posts_taggings_one_242.taggable_id = blog_posts.id AND posts_taggings_one_242.taggable_type = 'Blogit::Post' AND posts_taggings_one_242.tag_id = 1
23605
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (2.0ms)
23606
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (59.9ms)
23607
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23608
+ Completed 200 OK in 67ms (Views: 65.4ms | ActiveRecord: 1.1ms)
23609
+
23610
+
23611
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23612
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23613
+
23614
+
23615
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23616
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23617
+
23618
+
23619
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23620
+ Served asset /blogit.css - 304 Not Modified (0ms)
23621
+
23622
+
23623
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23624
+ Served asset /application.css - 304 Not Modified (0ms)
23625
+
23626
+
23627
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23628
+ Served asset /blogit.js - 304 Not Modified (0ms)
23629
+
23630
+
23631
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23632
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23633
+
23634
+
23635
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23636
+ Served asset /jquery.js - 304 Not Modified (0ms)
23637
+
23638
+
23639
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:31 +0000
23640
+ Served asset /application.js - 304 Not Modified (0ms)
23641
+
23642
+
23643
+ Started GET "/blog/posts/tagged/one" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23644
+ Processing by Blogit::PostsController#tagged as HTML
23645
+ Parameters: {"tag"=>"one"}
23646
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23647
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'one')
23648
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" JOIN taggings posts_taggings_one_1006 ON posts_taggings_one_1006.taggable_id = blog_posts.id AND posts_taggings_one_1006.taggable_type = 'Blogit::Post' AND posts_taggings_one_1006.tag_id = 1 ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23649
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
23650
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23651
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23652
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23653
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23654
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.3ms)
23655
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.3ms)
23656
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.9ms)
23657
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.8ms)
23658
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23659
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23660
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23661
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
23662
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23663
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (52.1ms)
23664
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" JOIN taggings posts_taggings_one_1006 ON posts_taggings_one_1006.taggable_id = blog_posts.id AND posts_taggings_one_1006.taggable_type = 'Blogit::Post' AND posts_taggings_one_1006.tag_id = 1
23665
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.9ms)
23666
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (65.9ms)
23667
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23668
+ Completed 200 OK in 73ms (Views: 71.6ms | ActiveRecord: 1.2ms)
23669
+
23670
+
23671
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23672
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23673
+
23674
+
23675
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23676
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23677
+
23678
+
23679
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23680
+ Served asset /blogit.css - 304 Not Modified (0ms)
23681
+
23682
+
23683
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23684
+ Served asset /application.css - 304 Not Modified (0ms)
23685
+
23686
+
23687
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23688
+ Served asset /blogit.js - 304 Not Modified (0ms)
23689
+
23690
+
23691
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23692
+ Served asset /jquery.js - 304 Not Modified (0ms)
23693
+
23694
+
23695
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23696
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23697
+
23698
+
23699
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:40 +0000
23700
+ Served asset /application.js - 304 Not Modified (0ms)
23701
+
23702
+
23703
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23704
+ Processing by Blogit::PostsController#index as HTML
23705
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23706
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23707
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
23708
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23709
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23710
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23711
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23712
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.1ms)
23713
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
23714
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
23715
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
23716
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23717
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
23718
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23719
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.7ms)
23720
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
23721
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (21.5ms)
23722
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" 
23723
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23724
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (31.6ms)
23725
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23726
+ Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.9ms)
23727
+
23728
+
23729
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23730
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23731
+
23732
+
23733
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23734
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23735
+
23736
+
23737
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23738
+ Served asset /blogit.css - 304 Not Modified (0ms)
23739
+
23740
+
23741
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23742
+ Served asset /jquery.js - 304 Not Modified (0ms)
23743
+
23744
+
23745
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23746
+ Served asset /blogit.js - 304 Not Modified (0ms)
23747
+
23748
+
23749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23750
+ Served asset /application.css - 304 Not Modified (0ms)
23751
+
23752
+
23753
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23754
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23755
+
23756
+
23757
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:44 +0000
23758
+ Served asset /application.js - 304 Not Modified (0ms)
23759
+
23760
+
23761
+ Started GET "/blog/posts/2-this-is-a-test-post" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23762
+ Processing by Blogit::PostsController#show as HTML
23763
+ Parameters: {"id"=>"2-this-is-a-test-post"}
23764
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "2-this-is-a-test-post"]]
23765
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.9ms)
23766
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
23767
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23768
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (6.3ms)
23769
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
23770
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.0ms)
23771
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (14.6ms)
23772
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 2
23773
+ Rendered collection (0.0ms)
23774
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/_form.html.erb (9.0ms)
23775
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/show.html.erb within layouts/application (80.5ms)
23776
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23777
+ Completed 200 OK in 88ms (Views: 86.5ms | ActiveRecord: 1.1ms)
23778
+
23779
+
23780
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23781
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23782
+
23783
+
23784
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23785
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23786
+
23787
+
23788
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23789
+ Served asset /blogit.css - 304 Not Modified (0ms)
23790
+
23791
+
23792
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23793
+ Served asset /application.css - 304 Not Modified (0ms)
23794
+
23795
+
23796
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23797
+ Served asset /blogit.js - 304 Not Modified (0ms)
23798
+
23799
+
23800
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23801
+ Served asset /jquery.js - 304 Not Modified (0ms)
23802
+
23803
+
23804
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23805
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23806
+
23807
+
23808
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:52 +0000
23809
+ Served asset /application.js - 304 Not Modified (0ms)
23810
+
23811
+
23812
+ Started GET "/blog/posts/tagged/onea" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23813
+ Processing by Blogit::PostsController#tagged as HTML
23814
+ Parameters: {"tag"=>"onea"}
23815
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23816
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'onea')
23817
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE (1 = 0) ORDER BY updated_at DESC LIMIT 5 OFFSET 0
23818
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (0.0ms)
23819
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23820
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23821
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (11.1ms)
23822
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23823
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.5ms)
23824
+
23825
+
23826
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23827
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23828
+
23829
+
23830
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23831
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23832
+
23833
+
23834
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23835
+ Served asset /blogit.css - 304 Not Modified (0ms)
23836
+
23837
+
23838
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23839
+ Served asset /application.css - 304 Not Modified (0ms)
23840
+
23841
+
23842
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23843
+ Served asset /blogit.js - 304 Not Modified (0ms)
23844
+
23845
+
23846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23847
+ Served asset /jquery.js - 304 Not Modified (0ms)
23848
+
23849
+
23850
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23851
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23852
+
23853
+
23854
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:28:58 +0000
23855
+ Served asset /application.js - 304 Not Modified (0ms)
23856
+
23857
+
23858
+ Started GET "/blog/posts/tagged/onea" for 127.0.0.1 at 2011-11-18 21:29:42 +0000
23859
+ Processing by Blogit::PostsController#tagged as HTML
23860
+ Parameters: {"tag"=>"onea"}
23861
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23862
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'onea')
23863
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" WHERE (1 = 0) LIMIT 5 OFFSET 0) subquery_for_count 
23864
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (10.9ms)
23865
+ Completed 500 Internal Server Error in 15ms
23866
+
23867
+ ActionView::Template::Error (Missing partial blogit/posts/empty with {:handlers=>[:erb, :builder], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
23868
+ * "/Users/Gavin/Gems/blogit/spec/dummy/app/views"
23869
+ * "/Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/kaminari-0.12.4/app/views"
23870
+ * "/Users/Gavin/Gems/blogit/app/views"
23871
+ ):
23872
+ 10: locals: {show_comments_count: true} %>
23873
+ 11: <% else %>
23874
+ 12:
23875
+ 13: <%= render partial: "blogit/posts/empty" %>
23876
+ 14:
23877
+ 15: <% end %>
23878
+ 16:
23879
+
23880
+
23881
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
23882
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
23883
+ Rendered /Users/Gavin/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.9ms)
23884
+
23885
+
23886
+ Started GET "/blog/posts/tagged/onea" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23887
+ Processing by Blogit::PostsController#tagged as HTML
23888
+ Parameters: {"tag"=>"onea"}
23889
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23890
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'onea')
23891
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" WHERE (1 = 0) LIMIT 5 OFFSET 0) subquery_for_count
23892
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.3ms)
23893
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23894
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23895
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (11.9ms)
23896
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23897
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.6ms)
23898
+
23899
+
23900
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23901
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23902
+
23903
+
23904
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23905
+ Served asset /application.css - 304 Not Modified (0ms)
23906
+
23907
+
23908
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23909
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23910
+
23911
+
23912
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23913
+ Served asset /blogit.css - 304 Not Modified (0ms)
23914
+
23915
+
23916
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23917
+ Served asset /blogit.js - 304 Not Modified (0ms)
23918
+
23919
+
23920
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23921
+ Served asset /jquery.js - 304 Not Modified (0ms)
23922
+
23923
+
23924
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23925
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23926
+
23927
+
23928
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:18 +0000
23929
+ Served asset /application.js - 304 Not Modified (0ms)
23930
+
23931
+
23932
+ Started GET "/blog/posts/tagged/onea" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23933
+ Processing by Blogit::PostsController#tagged as HTML
23934
+ Parameters: {"tag"=>"onea"}
23935
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23936
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'onea')
23937
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" WHERE (1 = 0) LIMIT 5 OFFSET 0) subquery_for_count 
23938
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.3ms)
23939
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23940
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23941
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (12.3ms)
23942
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23943
+ Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.6ms)
23944
+
23945
+
23946
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23947
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23948
+
23949
+
23950
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23951
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23952
+
23953
+
23954
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23955
+ Served asset /application.css - 304 Not Modified (0ms)
23956
+
23957
+
23958
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23959
+ Served asset /blogit.css - 304 Not Modified (0ms)
23960
+
23961
+
23962
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23963
+ Served asset /blogit.js - 304 Not Modified (0ms)
23964
+
23965
+
23966
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23967
+ Served asset /jquery.js - 304 Not Modified (0ms)
23968
+
23969
+
23970
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23971
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
23972
+
23973
+
23974
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:32 +0000
23975
+ Served asset /application.js - 304 Not Modified (0ms)
23976
+
23977
+
23978
+ Started GET "/blog/posts/tagged/onea" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
23979
+ Processing by Blogit::PostsController#tagged as HTML
23980
+ Parameters: {"tag"=>"onea"}
23981
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23982
+ ActsAsTaggableOn::Tag Load (0.1ms) SELECT "tags".* FROM "tags" WHERE (name LIKE 'onea')
23983
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" WHERE (1 = 0) LIMIT 5 OFFSET 0) subquery_for_count
23984
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_empty.html.erb (0.3ms)
23985
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts" WHERE (1 = 0)
23986
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.6ms)
23987
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (40.2ms)
23988
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
23989
+ Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.6ms)
23990
+
23991
+
23992
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
23993
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
23994
+
23995
+
23996
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
23997
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
23998
+
23999
+
24000
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24001
+ Served asset /blogit.css - 304 Not Modified (0ms)
24002
+
24003
+
24004
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24005
+ Served asset /application.css - 304 Not Modified (0ms)
24006
+
24007
+
24008
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24009
+ Served asset /blogit.js - 304 Not Modified (0ms)
24010
+
24011
+
24012
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24013
+ Served asset /jquery.js - 304 Not Modified (0ms)
24014
+
24015
+
24016
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24017
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
24018
+
24019
+
24020
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:42 +0000
24021
+ Served asset /application.js - 304 Not Modified (0ms)
24022
+
24023
+
24024
+ Started GET "/blog/" for 127.0.0.1 at 2011-11-18 21:30:43 +0000
24025
+ Processing by Blogit::PostsController#index as HTML
24026
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
24027
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count
24028
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 0
24029
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (1.1ms)
24030
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.4ms)
24031
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
24032
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
24033
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
24034
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (4.3ms)
24035
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (1.2ms)
24036
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_head.html.erb (0.7ms)
24037
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_body.html.erb (0.6ms)
24038
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
24039
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post_links.html.erb (0.5ms)
24040
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
24041
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_blogger_information.html.erb (0.8ms)
24042
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_comments_count.html.erb (0.6ms)
24043
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_post.html.erb (22.2ms)
24044
+  (0.1ms) SELECT COUNT(*) FROM "blog_posts"
24045
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_pagination.html.erb (1.7ms)
24046
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/index.html.erb within layouts/application (62.2ms)
24047
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
24048
+ Completed 200 OK in 69ms (Views: 68.1ms | ActiveRecord: 1.1ms)
24049
+
24050
+
24051
+ Started GET "/assets/blogit/comments.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24052
+ Served asset /blogit/comments.css - 304 Not Modified (0ms)
24053
+
24054
+
24055
+ Started GET "/assets/blogit/posts.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24056
+ Served asset /blogit/posts.css - 304 Not Modified (0ms)
24057
+
24058
+
24059
+ Started GET "/assets/blogit.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24060
+ Served asset /blogit.css - 304 Not Modified (0ms)
24061
+
24062
+
24063
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24064
+ Served asset /application.css - 304 Not Modified (0ms)
24065
+
24066
+
24067
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24068
+ Served asset /jquery.js - 304 Not Modified (0ms)
24069
+
24070
+
24071
+ Started GET "/assets/blogit.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24072
+ Served asset /blogit.js - 304 Not Modified (0ms)
24073
+
24074
+
24075
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24076
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
24077
+
24078
+
24079
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-11-18 21:30:44 +0000
24080
+ Served asset /application.js - 304 Not Modified (0ms)