blogit 0.4.5 → 0.4.6

Sign up to get free protection for your applications and to get access to all the features.
data/config/routes.rb CHANGED
@@ -1,12 +1,12 @@
1
1
  Blogit::Engine.routes.draw do
2
2
 
3
+ # Keep these above the posts resources block
4
+ match "posts/page/:page" => "posts#index"
5
+ match "posts/tagged/:tag" => 'posts#tagged', as: :tagged_blog_posts
6
+
3
7
  resources :posts do
4
8
  resources :comments, only: [:create, :destroy]
5
9
  end
6
10
 
7
- match "page/:page" => "posts#index"
8
-
9
- match "posts/tagged/:tag" => 'posts#tagged', as: :tagged_blog_posts
10
-
11
11
  root to: "posts#index"
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Blogit
2
- VERSION = "0.4.5"
2
+ VERSION = "0.4.6"
3
3
  end
Binary file
@@ -4199,3 +4199,1101 @@ Completed 302 Found in 2ms
4199
4199
  Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
4200
4200
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
4201
4201
   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
4202
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4203
+  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4204
+ Processing by Blogit::CommentsController#create as JS
4205
+ Parameters: {"post_id"=>"302", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4206
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4207
+ SQL (71.7ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4208
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4209
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4210
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.679683' WHERE "blog_posts"."id" = 302
4211
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4212
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms)
4213
+ Completed 200 OK in 268ms (Views: 68.1ms | ActiveRecord: 72.5ms)
4214
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4215
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4216
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4217
+ Processing by Blogit::CommentsController#create as HTML
4218
+ Parameters: {"post_id"=>"302", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4219
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4220
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4221
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4222
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4223
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.857161' WHERE "blog_posts"."id" = 302
4224
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4225
+ Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title
4226
+ Completed 302 Found in 49ms
4227
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4228
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4229
+ Processing by Blogit::CommentsController#create as HTML
4230
+ Parameters: {"post_id"=>"302", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4231
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4232
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4233
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4234
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4235
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.909716' WHERE "blog_posts"."id" = 302
4236
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4237
+ Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title
4238
+ Completed 302 Found in 15ms
4239
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4240
+ Processing by Blogit::CommentsController#create as HTML
4241
+ Parameters: {"post_id"=>"302", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4242
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4243
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4244
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4245
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4246
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.928427' WHERE "blog_posts"."id" = 302
4247
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4248
+ Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title
4249
+ Completed 302 Found in 18ms
4250
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4251
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4252
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4253
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.947851' WHERE "blog_posts"."id" = 302
4254
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4255
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4256
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]
4257
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4258
+ Processing by Blogit::CommentsController#destroy as JS
4259
+ Parameters: {"id"=>"95", "post_id"=>"302", "use_route"=>"blogit"}
4260
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4261
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 AND "blog_comments"."id" = ? LIMIT 1 [["id", "95"]]
4262
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4263
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302
4264
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 95]]
4265
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.960234' WHERE "blog_posts"."id" = 302
4266
+ Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.7ms)
4267
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]
4268
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4269
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4270
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4271
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4272
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.974691' WHERE "blog_posts"."id" = 302
4273
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4274
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4275
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]
4276
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4277
+ Processing by Blogit::CommentsController#destroy as HTML
4278
+ Parameters: {"id"=>"96", "post_id"=>"302", "use_route"=>"blogit"}
4279
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4280
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 AND "blog_comments"."id" = ? LIMIT 1 [["id", "96"]]
4281
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4282
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302
4283
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 96]]
4284
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.986532' WHERE "blog_posts"."id" = 302
4285
+ Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title
4286
+ Completed 302 Found in 9ms
4287
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]
4288
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302
4289
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4290
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:30 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4291
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4292
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.998279' WHERE "blog_posts"."id" = 302
4293
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4294
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4295
+ Processing by Blogit::CommentsController#destroy as HTML
4296
+ Parameters: {"id"=>"97", "post_id"=>"302", "use_route"=>"blogit"}
4297
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]]
4298
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 AND "blog_comments"."id" = ? LIMIT 1 [["id", "97"]]
4299
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1
4300
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302
4301
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 97]]
4302
+ SQL (0.1ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.008166' WHERE "blog_posts"."id" = 302
4303
+ Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title
4304
+ Completed 302 Found in 9ms
4305
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4306
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4307
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4308
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.019074' WHERE "blog_posts"."id" = 302
4309
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4310
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4311
+ Processing by Blogit::CommentsController#destroy as HTML
4312
+ Parameters: {"id"=>"98", "post_id"=>"302", "use_route"=>"blogit"}
4313
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4314
+ Redirected to http://test.host/blog/
4315
+ Completed 302 Found in 1ms
4316
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4317
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4318
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 302], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4319
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302
4320
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.032186' WHERE "blog_posts"."id" = 302
4321
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4322
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4323
+ Processing by Blogit::CommentsController#destroy as HTML
4324
+ Parameters: {"id"=>"99", "post_id"=>"302", "use_route"=>"blogit"}
4325
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4326
+ Redirected to http://test.host/blog/
4327
+ Completed 302 Found in 1ms
4328
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4329
+ Processing by Blogit::PostsController#index as HTML
4330
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4331
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
4332
+ Processing by Blogit::PostsController#index as HTML
4333
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4334
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4335
+ Processing by Blogit::PostsController#index as XML
4336
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4337
+ Completed 200 OK in 101ms (Views: 100.4ms | ActiveRecord: 0.0ms)
4338
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4339
+ Processing by Blogit::PostsController#new as HTML
4340
+ Parameters: {"use_route"=>"blogit"}
4341
+ Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4342
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4343
+ Processing by Blogit::PostsController#new as HTML
4344
+ Parameters: {"use_route"=>"blogit"}
4345
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
4346
+ Processing by Blogit::PostsController#new as HTML
4347
+ Parameters: {"use_route"=>"blogit"}
4348
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4349
+ Redirected to http://test.host/blog/
4350
+ Completed 302 Found in 1ms
4351
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4352
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4353
+ Processing by Blogit::PostsController#create as HTML
4354
+ Parameters: {"post"=>{"title"=>"Tis is a blog post title", "body"=>"This is the body of the blog post - you'll see it's a lot bigger than the title"}, "use_route"=>"blogit"}
4355
+ Redirected to http://test.host/blog/posts
4356
+ Completed 302 Found in 1ms
4357
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4358
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4359
+ Processing by Blogit::PostsController#edit as HTML
4360
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4361
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4362
+ Processing by Blogit::PostsController#edit as HTML
4363
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4364
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4365
+ Redirected to http://test.host/blog/
4366
+ Completed 302 Found in 1ms
4367
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4368
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4369
+ Processing by Blogit::PostsController#update as HTML
4370
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4371
+ Redirected to http://test.host/blog/posts
4372
+ Completed 302 Found in 1ms
4373
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4374
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4375
+ Processing by Blogit::PostsController#update as HTML
4376
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4377
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 420], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4378
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4379
+ Redirected to http://test.host/blog/posts/317-something-new
4380
+ Completed 302 Found in 13ms
4381
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4382
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4383
+ Processing by Blogit::PostsController#update as HTML
4384
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4385
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 421], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4386
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4387
+ Redirected to http://test.host/blog/posts/318-something-new
4388
+ Completed 302 Found in 16ms
4389
+ Processing by Blogit::PostsController#update as HTML
4390
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4391
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4392
+ Redirected to http://test.host/blog/
4393
+ Completed 302 Found in 1ms
4394
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4395
+ Processing by Blogit::PostsController#show as HTML
4396
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4397
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4398
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
4399
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4400
+ Processing by Blogit::PostsController#destroy as HTML
4401
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4402
+ Redirected to http://test.host/blog/posts
4403
+ Completed 302 Found in 1ms
4404
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4405
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4406
+ Processing by Blogit::PostsController#destroy as HTML
4407
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4408
+ Redirected to http://test.host/blog/posts
4409
+ Completed 302 Found in 45ms
4410
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
4411
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4412
+ Processing by Blogit::PostsController#destroy as HTML
4413
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4414
+ Redirected to http://test.host/blog/posts
4415
+ Completed 302 Found in 1ms
4416
+ Processing by Blogit::PostsController#destroy as HTML
4417
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4418
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4419
+ Redirected to http://test.host/blog/
4420
+ Completed 302 Found in 1ms
4421
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4422
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 426], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4423
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4424
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4425
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 427], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4426
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4427
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4428
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 428], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4429
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4430
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4431
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 429], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4432
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
4433
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4434
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 430], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4435
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4436
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4437
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 431], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4438
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4439
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4440
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 432], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4441
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4442
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "Jeronimo"]]
4443
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 433 LIMIT 1
4444
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "Jeronimo"]]
4445
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 434 LIMIT 1
4446
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
4447
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 302 AND "taggings"."taggable_type" = 'Blogit::Post'
4448
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 302 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4449
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 302]]
4450
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 303 AND "taggings"."taggable_type" = 'Blogit::Post'
4451
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 303 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4452
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 303]]
4453
+ ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 304 AND "taggings"."taggable_type" = 'Blogit::Post'
4454
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 304 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4455
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 304]]
4456
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 305 AND "taggings"."taggable_type" = 'Blogit::Post'
4457
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 305 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4458
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 305]]
4459
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 306 AND "taggings"."taggable_type" = 'Blogit::Post'
4460
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 306 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4461
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 306]]
4462
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 307 AND "taggings"."taggable_type" = 'Blogit::Post'
4463
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 307 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4464
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 307]]
4465
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 308 AND "taggings"."taggable_type" = 'Blogit::Post'
4466
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 308 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4467
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 308]]
4468
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 309 AND "taggings"."taggable_type" = 'Blogit::Post'
4469
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 309 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4470
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 309]]
4471
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 310 AND "taggings"."taggable_type" = 'Blogit::Post'
4472
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 310 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4473
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 310]]
4474
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 311 AND "taggings"."taggable_type" = 'Blogit::Post'
4475
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 311 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4476
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 311]]
4477
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 312 AND "taggings"."taggable_type" = 'Blogit::Post'
4478
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 312 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4479
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 312]]
4480
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 313 AND "taggings"."taggable_type" = 'Blogit::Post'
4481
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 313 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4482
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 313]]
4483
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 314 AND "taggings"."taggable_type" = 'Blogit::Post'
4484
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 314 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4485
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 314]]
4486
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 315 AND "taggings"."taggable_type" = 'Blogit::Post'
4487
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 315 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4488
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 315]]
4489
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 316 AND "taggings"."taggable_type" = 'Blogit::Post'
4490
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 316 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4491
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 316]]
4492
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 317 AND "taggings"."taggable_type" = 'Blogit::Post'
4493
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 317 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4494
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 317]]
4495
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 318 AND "taggings"."taggable_type" = 'Blogit::Post'
4496
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 318 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4497
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 318]]
4498
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 319 AND "taggings"."taggable_type" = 'Blogit::Post'
4499
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 319 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4500
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 319]]
4501
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 320 AND "taggings"."taggable_type" = 'Blogit::Post'
4502
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 320 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4503
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 320]]
4504
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 321 AND "taggings"."taggable_type" = 'Blogit::Post'
4505
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 321 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4506
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 321]]
4507
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 322 AND "taggings"."taggable_type" = 'Blogit::Post'
4508
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 322 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4509
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 322]]
4510
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 323 AND "taggings"."taggable_type" = 'Blogit::Post'
4511
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 323 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4512
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 323]]
4513
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 324 AND "taggings"."taggable_type" = 'Blogit::Post'
4514
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 324 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4515
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 324]]
4516
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 325 AND "taggings"."taggable_type" = 'Blogit::Post'
4517
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 325 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4518
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 325]]
4519
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4520
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 435], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4521
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4522
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4523
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 436], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 10 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4524
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4525
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4526
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 437], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 09 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4527
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4528
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4529
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 438], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 08 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4530
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4531
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4532
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 439], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 07 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4533
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4534
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4535
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 440], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 06 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4536
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4537
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4538
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 441], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 05 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4539
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4540
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4541
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 442], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 04 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4542
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4543
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00], ["username", "bodacious"]]
4544
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 443], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 03 Jan 2012 09:27:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:31 UTC +00:00]]
4545
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4546
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4547
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 444], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 02 Jan 2012 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4548
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4549
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4550
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 445], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 01 Jan 2012 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4551
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4552
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4553
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 446], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 31 Dec 2011 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4554
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4555
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4556
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 447], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 30 Dec 2011 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4557
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4558
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4559
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 448], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4560
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4561
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00], ["username", "bodacious"]]
4562
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 449], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 09:27:32 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:27:32 UTC +00:00]]
4563
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4564
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
4565
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
4566
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
4567
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
4568
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4569
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4570
+ Processing by Blogit::CommentsController#create as JS
4571
+ Parameters: {"post_id"=>"326", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4572
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4573
+ SQL (36.2ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:22 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4574
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4575
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4576
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:22.916728' WHERE "blog_posts"."id" = 326
4577
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4578
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms)
4579
+ Completed 200 OK in 275ms (Views: 68.5ms | ActiveRecord: 37.0ms)
4580
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4581
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4582
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4583
+ Processing by Blogit::CommentsController#create as HTML
4584
+ Parameters: {"post_id"=>"326", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4585
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4586
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4587
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4588
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4589
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.136689' WHERE "blog_posts"."id" = 326
4590
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4591
+ Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title
4592
+ Completed 302 Found in 42ms
4593
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4594
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4595
+ Processing by Blogit::CommentsController#create as HTML
4596
+ Parameters: {"post_id"=>"326", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4597
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4598
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4599
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4600
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4601
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.183031' WHERE "blog_posts"."id" = 326
4602
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4603
+ Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title
4604
+ Completed 302 Found in 16ms
4605
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4606
+ Processing by Blogit::CommentsController#create as HTML
4607
+ Parameters: {"post_id"=>"326", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4608
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4609
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4610
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4611
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4612
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.201809' WHERE "blog_posts"."id" = 326
4613
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4614
+ Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title
4615
+ Completed 302 Found in 17ms
4616
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4617
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4618
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4619
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.219319' WHERE "blog_posts"."id" = 326
4620
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4621
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4622
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]
4623
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4624
+ Processing by Blogit::CommentsController#destroy as JS
4625
+ Parameters: {"id"=>"104", "post_id"=>"326", "use_route"=>"blogit"}
4626
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4627
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 AND "blog_comments"."id" = ? LIMIT 1 [["id", "104"]]
4628
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4629
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326
4630
+ SQL (0.2ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 104]]
4631
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.232652' WHERE "blog_posts"."id" = 326
4632
+ Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.8ms)
4633
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]
4634
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4635
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4636
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4637
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4638
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.245755' WHERE "blog_posts"."id" = 326
4639
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4640
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4641
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]
4642
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4643
+ Processing by Blogit::CommentsController#destroy as HTML
4644
+ Parameters: {"id"=>"105", "post_id"=>"326", "use_route"=>"blogit"}
4645
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4646
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 AND "blog_comments"."id" = ? LIMIT 1 [["id", "105"]]
4647
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4648
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326
4649
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 105]]
4650
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.257467' WHERE "blog_posts"."id" = 326
4651
+ Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title
4652
+ Completed 302 Found in 11ms
4653
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]
4654
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326
4655
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4656
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4657
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4658
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.271293' WHERE "blog_posts"."id" = 326
4659
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4660
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4661
+ Processing by Blogit::CommentsController#destroy as HTML
4662
+ Parameters: {"id"=>"106", "post_id"=>"326", "use_route"=>"blogit"}
4663
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]]
4664
+ Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 AND "blog_comments"."id" = ? LIMIT 1 [["id", "106"]]
4665
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1
4666
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326
4667
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 106]]
4668
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.282500' WHERE "blog_posts"."id" = 326
4669
+ Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title
4670
+ Completed 302 Found in 11ms
4671
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4672
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4673
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4674
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.296030' WHERE "blog_posts"."id" = 326
4675
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4676
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4677
+ Processing by Blogit::CommentsController#destroy as HTML
4678
+ Parameters: {"id"=>"107", "post_id"=>"326", "use_route"=>"blogit"}
4679
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4680
+ Redirected to http://test.host/blog/
4681
+ Completed 302 Found in 1ms
4682
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4683
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4684
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 326], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4685
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326
4686
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.308437' WHERE "blog_posts"."id" = 326
4687
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4688
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4689
+ Processing by Blogit::CommentsController#destroy as HTML
4690
+ Parameters: {"id"=>"108", "post_id"=>"326", "use_route"=>"blogit"}
4691
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4692
+ Redirected to http://test.host/blog/
4693
+ Completed 302 Found in 1ms
4694
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
4695
+ Processing by Blogit::PostsController#index as HTML
4696
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4697
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
4698
+ Processing by Blogit::PostsController#index as HTML
4699
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
4700
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
4701
+ Processing by Blogit::PostsController#index as XML
4702
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
4703
+ Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.0ms)
4704
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4705
+ Processing by Blogit::PostsController#new as HTML
4706
+ Parameters: {"use_route"=>"blogit"}
4707
+ Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4708
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4709
+ Processing by Blogit::PostsController#new as HTML
4710
+ Parameters: {"use_route"=>"blogit"}
4711
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
4712
+ Processing by Blogit::PostsController#new as HTML
4713
+ Parameters: {"use_route"=>"blogit"}
4714
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4715
+ Redirected to http://test.host/blog/
4716
+ Completed 302 Found in 1ms
4717
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4718
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4719
+ Processing by Blogit::PostsController#create as HTML
4720
+ Parameters: {"post"=>{"title"=>"Tis is a blog post title", "body"=>"This is the body of the blog post - you'll see it's a lot bigger than the title"}, "use_route"=>"blogit"}
4721
+ Redirected to http://test.host/blog/posts
4722
+ Completed 302 Found in 1ms
4723
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4724
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4725
+ Processing by Blogit::PostsController#edit as HTML
4726
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4727
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4728
+ Processing by Blogit::PostsController#edit as HTML
4729
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4730
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4731
+ Redirected to http://test.host/blog/
4732
+ Completed 302 Found in 1ms
4733
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4734
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4735
+ Processing by Blogit::PostsController#update as HTML
4736
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4737
+ Redirected to http://test.host/blog/posts
4738
+ Completed 302 Found in 1ms
4739
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4740
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4741
+ Processing by Blogit::PostsController#update as HTML
4742
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4743
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 453], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00]]
4744
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4745
+ Redirected to http://test.host/blog/posts/341-something-new
4746
+ Completed 302 Found in 14ms
4747
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4748
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4749
+ Processing by Blogit::PostsController#update as HTML
4750
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4751
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 454], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00]]
4752
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4753
+ Redirected to http://test.host/blog/posts/342-something-new
4754
+ Completed 302 Found in 13ms
4755
+ Processing by Blogit::PostsController#update as HTML
4756
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
4757
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4758
+ Redirected to http://test.host/blog/
4759
+ Completed 302 Found in 1ms
4760
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4761
+ Processing by Blogit::PostsController#show as HTML
4762
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4763
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4764
+ User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1
4765
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4766
+ Processing by Blogit::PostsController#destroy as HTML
4767
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4768
+ Redirected to http://test.host/blog/posts
4769
+ Completed 302 Found in 1ms
4770
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4771
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4772
+ Processing by Blogit::PostsController#destroy as HTML
4773
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4774
+ Redirected to http://test.host/blog/posts
4775
+ Completed 302 Found in 43ms
4776
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4777
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4778
+ Processing by Blogit::PostsController#destroy as HTML
4779
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4780
+ Redirected to http://test.host/blog/posts
4781
+ Completed 302 Found in 1ms
4782
+ Processing by Blogit::PostsController#destroy as HTML
4783
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
4784
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
4785
+ Redirected to http://test.host/blog/
4786
+ Completed 302 Found in 1ms
4787
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4788
+ SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 459], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00]]
4789
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"
4790
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4791
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 460], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00]]
4792
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4793
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4794
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 461], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00]]
4795
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4796
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:23 UTC +00:00], ["username", "bodacious"]]
4797
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 462], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4798
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4799
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4800
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 463], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4801
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4802
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4803
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 464], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4804
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4805
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4806
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 465], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4807
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4808
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "Jeronimo"]]
4809
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 466 LIMIT 1
4810
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "Jeronimo"]]
4811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 467 LIMIT 1
4812
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4813
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 326 AND "taggings"."taggable_type" = 'Blogit::Post'
4814
+ ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 326 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4815
+ SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 326]]
4816
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 327 AND "taggings"."taggable_type" = 'Blogit::Post'
4817
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 327 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4818
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 327]]
4819
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 328 AND "taggings"."taggable_type" = 'Blogit::Post'
4820
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 328 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4821
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 328]]
4822
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 329 AND "taggings"."taggable_type" = 'Blogit::Post'
4823
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 329 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4824
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 329]]
4825
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 330 AND "taggings"."taggable_type" = 'Blogit::Post'
4826
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 330 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4827
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 330]]
4828
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 331 AND "taggings"."taggable_type" = 'Blogit::Post'
4829
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 331 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4830
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 331]]
4831
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 332 AND "taggings"."taggable_type" = 'Blogit::Post'
4832
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 332 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4833
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 332]]
4834
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 333 AND "taggings"."taggable_type" = 'Blogit::Post'
4835
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 333 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4836
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 333]]
4837
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 334 AND "taggings"."taggable_type" = 'Blogit::Post'
4838
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 334 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4839
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 334]]
4840
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 335 AND "taggings"."taggable_type" = 'Blogit::Post'
4841
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 335 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4842
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 335]]
4843
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 336 AND "taggings"."taggable_type" = 'Blogit::Post'
4844
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 336 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4845
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 336]]
4846
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 337 AND "taggings"."taggable_type" = 'Blogit::Post'
4847
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 337 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4848
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 337]]
4849
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 338 AND "taggings"."taggable_type" = 'Blogit::Post'
4850
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 338 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4851
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 338]]
4852
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 339 AND "taggings"."taggable_type" = 'Blogit::Post'
4853
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 339 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4854
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 339]]
4855
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 340 AND "taggings"."taggable_type" = 'Blogit::Post'
4856
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 340 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4857
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 340]]
4858
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 341 AND "taggings"."taggable_type" = 'Blogit::Post'
4859
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 341 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4860
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 341]]
4861
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 342 AND "taggings"."taggable_type" = 'Blogit::Post'
4862
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 342 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4863
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 342]]
4864
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 343 AND "taggings"."taggable_type" = 'Blogit::Post'
4865
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 343 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4866
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 343]]
4867
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 344 AND "taggings"."taggable_type" = 'Blogit::Post'
4868
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 344 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4869
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 344]]
4870
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 345 AND "taggings"."taggable_type" = 'Blogit::Post'
4871
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 345 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4872
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 345]]
4873
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 346 AND "taggings"."taggable_type" = 'Blogit::Post'
4874
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 346 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4875
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 346]]
4876
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 347 AND "taggings"."taggable_type" = 'Blogit::Post'
4877
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 347 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4878
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 347]]
4879
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 348 AND "taggings"."taggable_type" = 'Blogit::Post'
4880
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 348 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4881
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 348]]
4882
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 349 AND "taggings"."taggable_type" = 'Blogit::Post'
4883
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 349 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
4884
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 349]]
4885
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4886
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 468], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4887
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4888
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4889
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 469], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 10 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4890
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4891
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4892
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 470], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 09 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4893
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4894
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4895
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 471], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 08 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4896
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4897
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4898
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 472], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 07 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4899
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4900
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4901
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 473], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 06 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4902
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4903
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4904
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 474], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 05 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4905
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4906
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4907
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 475], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 04 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4908
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4909
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4910
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 476], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 03 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4911
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4912
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4913
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 477], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 02 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4914
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4915
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4916
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 478], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 01 Jan 2012 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4917
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4918
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4919
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 479], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 31 Dec 2011 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4920
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4921
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4922
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 480], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 30 Dec 2011 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4923
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4924
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4925
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 481], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4926
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4927
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00], ["username", "bodacious"]]
4928
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 482], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 09:39:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:39:24 UTC +00:00]]
4929
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4930
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
4931
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
4932
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
4933
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count
4934
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4935
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
4936
+ Processing by Blogit::CommentsController#create as JS
4937
+ Parameters: {"post_id"=>"350", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4938
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
4939
+ SQL (36.3ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4940
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
4941
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
4942
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.181230' WHERE "blog_posts"."id" = 350
4943
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4944
+ Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms)
4945
+ Completed 200 OK in 277ms (Views: 61.8ms | ActiveRecord: 37.1ms)
4946
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
4947
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4948
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
4949
+ Processing by Blogit::CommentsController#create as HTML
4950
+ Parameters: {"post_id"=>"350", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4951
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
4952
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4953
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
4954
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
4955
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.403186' WHERE "blog_posts"."id" = 350
4956
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4957
+ Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title
4958
+ Completed 302 Found in 46ms
4959
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
4960
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4961
+ Processing by Blogit::CommentsController#create as HTML
4962
+ Parameters: {"post_id"=>"350", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4963
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
4964
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4965
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
4966
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
4967
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.453257' WHERE "blog_posts"."id" = 350
4968
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4969
+ Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title
4970
+ Completed 302 Found in 16ms
4971
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4972
+ Processing by Blogit::CommentsController#create as HTML
4973
+ Parameters: {"post_id"=>"350", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}, "use_route"=>"blogit"}
4974
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
4975
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4976
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
4977
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
4978
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.473096' WHERE "blog_posts"."id" = 350
4979
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
4980
+ Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title
4981
+ Completed 302 Found in 18ms
4982
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
4983
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
4984
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
4985
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.491835' WHERE "blog_posts"."id" = 350
4986
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
4987
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
4988
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]
4989
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
4990
+ Processing by Blogit::CommentsController#destroy as JS
4991
+ Parameters: {"id"=>"113", "post_id"=>"350", "use_route"=>"blogit"}
4992
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
4993
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 AND "blog_comments"."id" = ? LIMIT 1 [["id", "113"]]
4994
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
4995
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350
4996
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 113]]
4997
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.505376' WHERE "blog_posts"."id" = 350
4998
+ Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.7ms)
4999
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]
5000
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
5001
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
5002
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
5003
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
5004
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.520802' WHERE "blog_posts"."id" = 350
5005
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5006
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5007
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]
5008
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
5009
+ Processing by Blogit::CommentsController#destroy as HTML
5010
+ Parameters: {"id"=>"114", "post_id"=>"350", "use_route"=>"blogit"}
5011
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
5012
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 AND "blog_comments"."id" = ? LIMIT 1 [["id", "114"]]
5013
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
5014
+ SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350
5015
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 114]]
5016
+ SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.536264' WHERE "blog_posts"."id" = 350
5017
+ Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title
5018
+ Completed 302 Found in 11ms
5019
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]
5020
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350
5021
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
5022
+ SQL (0.5ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
5023
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
5024
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.549840' WHERE "blog_posts"."id" = 350
5025
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5026
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5027
+ Processing by Blogit::CommentsController#destroy as HTML
5028
+ Parameters: {"id"=>"115", "post_id"=>"350", "use_route"=>"blogit"}
5029
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]]
5030
+ Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 AND "blog_comments"."id" = ? LIMIT 1 [["id", "115"]]
5031
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1
5032
+ SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350
5033
+ SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 115]]
5034
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.560408' WHERE "blog_posts"."id" = 350
5035
+ Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title
5036
+ Completed 302 Found in 9ms
5037
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
5038
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
5039
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
5040
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.571783' WHERE "blog_posts"."id" = 350
5041
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5042
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
5043
+ Processing by Blogit::CommentsController#destroy as HTML
5044
+ Parameters: {"id"=>"116", "post_id"=>"350", "use_route"=>"blogit"}
5045
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5046
+ Redirected to http://test.host/blog/
5047
+ Completed 302 Found in 2ms
5048
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
5049
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1
5050
+ SQL (0.4ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 350], ["state", nil], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["website", "http://gavinmorrice.com"]]
5051
+ SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350
5052
+ SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.586362' WHERE "blog_posts"."id" = 350
5053
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5054
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
5055
+ Processing by Blogit::CommentsController#destroy as HTML
5056
+ Parameters: {"id"=>"117", "post_id"=>"350", "use_route"=>"blogit"}
5057
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5058
+ Redirected to http://test.host/blog/
5059
+ Completed 302 Found in 1ms
5060
+  (0.1ms) SELECT COUNT(*) FROM "blog_comments"
5061
+ Processing by Blogit::PostsController#index as HTML
5062
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
5063
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
5064
+ Processing by Blogit::PostsController#index as HTML
5065
+ Parameters: {"page"=>"2", "use_route"=>"blogit"}
5066
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
5067
+ Processing by Blogit::PostsController#index as XML
5068
+ Parameters: {"page"=>"", "use_route"=>"blogit"}
5069
+ Completed 200 OK in 51ms (Views: 51.2ms | ActiveRecord: 0.0ms)
5070
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5071
+ Processing by Blogit::PostsController#new as HTML
5072
+ Parameters: {"use_route"=>"blogit"}
5073
+ Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
5074
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5075
+ Processing by Blogit::PostsController#new as HTML
5076
+ Parameters: {"use_route"=>"blogit"}
5077
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
5078
+ Processing by Blogit::PostsController#new as HTML
5079
+ Parameters: {"use_route"=>"blogit"}
5080
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5081
+ Redirected to http://test.host/blog/
5082
+ Completed 302 Found in 1ms
5083
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5084
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5085
+ Processing by Blogit::PostsController#create as HTML
5086
+ Parameters: {"post"=>{"title"=>"Tis is a blog post title", "body"=>"This is the body of the blog post - you'll see it's a lot bigger than the title"}, "use_route"=>"blogit"}
5087
+ Redirected to http://test.host/blog/posts
5088
+ Completed 302 Found in 1ms
5089
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5090
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5091
+ Processing by Blogit::PostsController#edit as HTML
5092
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5093
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
5094
+ Processing by Blogit::PostsController#edit as HTML
5095
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5096
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5097
+ Redirected to http://test.host/blog/
5098
+ Completed 302 Found in 1ms
5099
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5100
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5101
+ Processing by Blogit::PostsController#update as HTML
5102
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
5103
+ Redirected to http://test.host/blog/posts
5104
+ Completed 302 Found in 1ms
5105
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5106
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5107
+ Processing by Blogit::PostsController#update as HTML
5108
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
5109
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 486], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00]]
5110
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5111
+ Redirected to http://test.host/blog/posts/365-something-new
5112
+ Completed 302 Found in 15ms
5113
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5114
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5115
+ Processing by Blogit::PostsController#update as HTML
5116
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
5117
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 487], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00]]
5118
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5119
+ Redirected to http://test.host/blog/posts/366-something-new
5120
+ Completed 302 Found in 13ms
5121
+ Processing by Blogit::PostsController#update as HTML
5122
+ Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"}
5123
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5124
+ Redirected to http://test.host/blog/
5125
+ Completed 302 Found in 1ms
5126
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5127
+ Processing by Blogit::PostsController#show as HTML
5128
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5129
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
5130
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5131
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5132
+ Processing by Blogit::PostsController#destroy as HTML
5133
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5134
+ Redirected to http://test.host/blog/posts
5135
+ Completed 302 Found in 1ms
5136
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5137
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5138
+ Processing by Blogit::PostsController#destroy as HTML
5139
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5140
+ Redirected to http://test.host/blog/posts
5141
+ Completed 302 Found in 44ms
5142
+ User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1
5143
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:48 UTC +00:00], ["username", "bodacious"]]
5144
+ Processing by Blogit::PostsController#destroy as HTML
5145
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5146
+ Redirected to http://test.host/blog/posts
5147
+ Completed 302 Found in 1ms
5148
+ Processing by Blogit::PostsController#destroy as HTML
5149
+ Parameters: {"id"=>"1", "use_route"=>"blogit"}
5150
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1
5151
+ Redirected to http://test.host/blog/
5152
+ Completed 302 Found in 1ms
5153
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5154
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 492], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5155
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5156
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5157
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 493], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5158
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5159
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5160
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 494], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5161
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5162
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5163
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 495], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5164
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5165
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5166
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 496], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5167
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5168
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5169
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 497], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5170
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5171
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5172
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 498], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5173
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5174
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "Jeronimo"]]
5175
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 499 LIMIT 1
5176
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "Jeronimo"]]
5177
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 500 LIMIT 1
5178
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 
5179
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 350 AND "taggings"."taggable_type" = 'Blogit::Post'
5180
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 350 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5181
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 350]]
5182
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 351 AND "taggings"."taggable_type" = 'Blogit::Post'
5183
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 351 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5184
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 351]]
5185
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 352 AND "taggings"."taggable_type" = 'Blogit::Post'
5186
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 352 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5187
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 352]]
5188
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 353 AND "taggings"."taggable_type" = 'Blogit::Post'
5189
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 353 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5190
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 353]]
5191
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 354 AND "taggings"."taggable_type" = 'Blogit::Post'
5192
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 354 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5193
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 354]]
5194
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 355 AND "taggings"."taggable_type" = 'Blogit::Post'
5195
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 355 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5196
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 355]]
5197
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 356 AND "taggings"."taggable_type" = 'Blogit::Post'
5198
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 356 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5199
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 356]]
5200
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 357 AND "taggings"."taggable_type" = 'Blogit::Post'
5201
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 357 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5202
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 357]]
5203
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 358 AND "taggings"."taggable_type" = 'Blogit::Post'
5204
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 358 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5205
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 358]]
5206
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 359 AND "taggings"."taggable_type" = 'Blogit::Post'
5207
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 359 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5208
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 359]]
5209
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 360 AND "taggings"."taggable_type" = 'Blogit::Post'
5210
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 360 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5211
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 360]]
5212
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 361 AND "taggings"."taggable_type" = 'Blogit::Post'
5213
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 361 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5214
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 361]]
5215
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 362 AND "taggings"."taggable_type" = 'Blogit::Post'
5216
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 362 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5217
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 362]]
5218
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 363 AND "taggings"."taggable_type" = 'Blogit::Post'
5219
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 363 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5220
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 363]]
5221
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 364 AND "taggings"."taggable_type" = 'Blogit::Post'
5222
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 364 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5223
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 364]]
5224
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 365 AND "taggings"."taggable_type" = 'Blogit::Post'
5225
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 365 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5226
+ SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 365]]
5227
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 366 AND "taggings"."taggable_type" = 'Blogit::Post'
5228
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 366 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5229
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 366]]
5230
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 367 AND "taggings"."taggable_type" = 'Blogit::Post'
5231
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 367 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5232
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 367]]
5233
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 368 AND "taggings"."taggable_type" = 'Blogit::Post'
5234
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 368 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5235
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 368]]
5236
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 369 AND "taggings"."taggable_type" = 'Blogit::Post'
5237
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 369 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5238
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 369]]
5239
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 370 AND "taggings"."taggable_type" = 'Blogit::Post'
5240
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 370 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5241
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 370]]
5242
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 371 AND "taggings"."taggable_type" = 'Blogit::Post'
5243
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 371 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5244
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 371]]
5245
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 372 AND "taggings"."taggable_type" = 'Blogit::Post'
5246
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 372 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5247
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 372]]
5248
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 373 AND "taggings"."taggable_type" = 'Blogit::Post'
5249
+ ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 373 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags')
5250
+ SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 373]]
5251
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5252
+ SQL (0.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 501], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5253
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5254
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5255
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 502], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 10 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5256
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5257
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5258
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 503], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 09 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5259
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5260
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5261
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 504], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 08 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5262
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5263
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5264
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 505], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 07 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5265
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5266
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5267
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 506], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 06 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5268
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5269
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5270
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 507], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 05 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5271
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5272
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5273
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 508], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 04 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5274
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5275
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5276
+ SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 509], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 03 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5277
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5278
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5279
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 510], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 02 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5280
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5281
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5282
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 511], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 01 Jan 2012 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5283
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5284
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5285
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 512], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 31 Dec 2011 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5286
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5287
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5288
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 513], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 30 Dec 2011 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5289
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5290
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5291
+ SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 514], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 29 Dec 2011 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5292
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 
5293
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00], ["username", "bodacious"]]
5294
+ SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 515], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 28 Dec 2011 09:46:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 11 Jan 2012 09:46:49 UTC +00:00]]
5295
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"
5296
+ Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0
5297
+ Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1
5298
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count 
5299
+  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count