Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 65ms (Views: 64.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Completed 500 Internal Server Error in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 66ms (Views: 65.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Completed 500 Internal Server Error in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 500 Internal Server Error in 0ms  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20110814091304)  (0.0ms) select sqlite_version(*)  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110814091304') Migrating to CreatePeople (20110819103335)  (0.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110819103335') Migrating to CreateBlogPosts (20111118222920)  (0.3ms) CREATE TABLE "blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "blogger_id" integer, "blogger_type" varchar(255), "comments_count" integer DEFAULT 0 NOT NULL, "created_at" datetime, "updated_at" datetime)   (0.0ms) PRAGMA index_list("blog_posts")  (0.1ms) CREATE INDEX "index_blog_posts_on_blogger_type_and_blogger_id" ON "blog_posts" ("blogger_type", "blogger_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222920') Migrating to CreateBlogComments (20111118222921)  (0.3ms) CREATE TABLE "blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "website" varchar(255), "body" text NOT NULL, "post_id" integer NOT NULL, "state" varchar(255), "created_at" datetime, "updated_at" datetime)   (0.1ms) PRAGMA index_list("blog_comments")  (0.1ms) CREATE INDEX "index_blog_comments_on_post_id" ON "blog_comments" ("post_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222921') Migrating to ActsAsTaggableOnMigration (20111118222922)  (0.2ms) CREATE TABLE "tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))   (0.1ms) CREATE TABLE "taggings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tag_id" integer, "taggable_id" integer, "taggable_type" varchar(255), "tagger_id" integer, "tagger_type" varchar(255), "context" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("taggings")  (0.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("tag_id")  (0.0ms) PRAGMA index_list("taggings")  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')  (0.1ms) CREATE INDEX "index_taggings_on_taggable_id_and_taggable_type_and_context" ON "taggings" ("taggable_id", "taggable_type", "context")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111118222922')  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("blog_comments")  (0.0ms) PRAGMA index_info('index_blog_comments_on_post_id')  (0.0ms) PRAGMA index_list("blog_posts")  (0.0ms) PRAGMA index_info('index_blog_posts_on_blogger_type_and_blogger_id')  (0.0ms) PRAGMA index_list("people")  (0.0ms) PRAGMA index_list("taggings")  (0.0ms) PRAGMA index_info('index_taggings_on_taggable_id_and_taggable_type_and_context')  (0.0ms) PRAGMA index_info('index_taggings_on_tag_id')  (0.0ms) PRAGMA index_list("tags")  (0.0ms) PRAGMA index_list("users") Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 SQL (56.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 1], ["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 16:46:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"1", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.6ms) 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.325325' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.5ms) Completed 200 OK in 171ms (Views: 60.0ms | ActiveRecord: 1.3ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"1", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.486278' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 9ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"1", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.498874' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 10ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"1", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.512032' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 11ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.524574' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"5", "post_id"=>"1", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "5"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 5]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.540087' WHERE "blog_posts"."id" = 1 Completed 200 OK in 43ms (Views: 36.0ms | ActiveRecord: 0.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 SQL (0.6ms) 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.587671' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"6", "post_id"=>"1", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "6"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 6]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.740055' WHERE "blog_posts"."id" = 1 Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 7ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.750174' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"7", "post_id"=>"1", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 1 AND "blog_comments"."id" = ? LIMIT 1 [["id", "7"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 1 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 7]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.759424' WHERE "blog_posts"."id" = 1 Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 10ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.771221' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"8", "post_id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:46:19.785387' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.0ms) SELECT "blog_posts".* FROM "blog_posts"  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"9", "post_id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 18ms (Views: 18.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 5], ["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 16:46:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/2-something-new Completed 302 Found in 9ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 6], ["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 16:46:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/3-something-new Completed 302 Found in 10ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:19 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 45ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 11], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 12], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 13], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 14], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 15], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 16], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 17], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 18 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 19 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 1 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 1]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 2 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 2]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 3 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 3]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 4 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 4]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 5 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 5]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 6 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 6]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 7 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 7]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 8 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 8]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 9 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 9]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 10 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 10]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 20], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 21], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 22], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 23], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 24], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 25], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 26], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 27], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 28], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 29], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 30], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 31], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 32], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 33], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:46:20 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 34], ["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 16:46:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:46:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"11", "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"} Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] SQL (13.8ms) 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.369765' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (11.7ms) Completed 200 OK in 302ms (Views: 67.7ms | ActiveRecord: 14.8ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"11", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.604804' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title Completed 302 Found in 52ms  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"11", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] SQL (0.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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.662337' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title Completed 302 Found in 18ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"11", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.683122' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title Completed 302 Found in 17ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.701694' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"14", "post_id"=>"11", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "14"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 14]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.715779' WHERE "blog_posts"."id" = 11 Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.9ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 SQL (0.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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.730245' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"15", "post_id"=>"11", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "15"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 15]] SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.743624' WHERE "blog_posts"."id" = 11 Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.754307' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"16", "post_id"=>"11", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "11"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 11 AND "blog_comments"."id" = ? LIMIT 1 [["id", "16"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 11 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 11 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 16]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.765355' WHERE "blog_posts"."id" = 11 Redirected to http://test.host/blog/posts/11-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.775731' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"17", "post_id"=>"11", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 11], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 11 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:50:45.788661' WHERE "blog_posts"."id" = 11 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"18", "post_id"=>"11", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 21ms (Views: 21.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 44ms (Views: 37.4ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 2ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 38], ["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 16:50:45 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/26-something-new Completed 302 Found in 16ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 39], ["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 16:50:45 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/27-something-new Completed 302 Found in 16ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:45 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 44], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 45], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 46], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 47], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 48], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 49], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 50], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 51 LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 52 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 11 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 11]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 12 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 12]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 13 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 13]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 14 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 14]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 15 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 15]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 16 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 16]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 17 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 17]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 18 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 18]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 19 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 19]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 20 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 20]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 21 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 21]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 22 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 22]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 23 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 23]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 24 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 24]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 25 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 25]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 26 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 26]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 27 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 27]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 28 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 28]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 29 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 29]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 30 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 30]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 31 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 31]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 32 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 32]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 33 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 33]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 34 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 34]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 53], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 54], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 55], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 56], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 57], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 58], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 59], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 60], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 61], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 62], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 63], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 64], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 65], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 66], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:50:46 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 67], ["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 16:50:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:50:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"35", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] SQL (11.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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.432627' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (10.2ms) Completed 200 OK in 279ms (Views: 67.6ms | ActiveRecord: 12.6ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"35", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.654736' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title Completed 302 Found in 45ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"35", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.704744' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"35", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.722868' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title Completed 302 Found in 16ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.740911' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"23", "post_id"=>"35", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "23"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 23]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.754649' WHERE "blog_posts"."id" = 35 Completed 200 OK in 9ms (Views: 1.5ms | ActiveRecord: 0.9ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.766177' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"24", "post_id"=>"35", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "24"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 24]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.777286' WHERE "blog_posts"."id" = 35 Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 35]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.787801' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"25", "post_id"=>"35", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "35"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 35 AND "blog_comments"."id" = ? LIMIT 1 [["id", "25"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 35 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 35 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 25]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.797394' WHERE "blog_posts"."id" = 35 Redirected to http://test.host/blog/posts/35-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.807742' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"26", "post_id"=>"35", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 SQL (0.6ms) 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", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 35], ["state", nil], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 35 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 16:54:22.820385' WHERE "blog_posts"."id" = 35 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"27", "post_id"=>"35", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 43ms (Views: 36.6ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 2ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 71], ["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 16:54:22 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/50-something-new Completed 302 Found in 14ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 72], ["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 16:54:22 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 16:54:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/51-something-new Completed 302 Found in 14ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 77], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 78], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 79], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 80], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 81], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 82], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 83], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 84 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 85 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 35 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 35]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 36 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 36]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 37 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 37]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 38 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 38]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 39 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 39]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 40 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 40]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 41 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 41]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 42 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 42]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 43 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 43]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 44]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 45 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 45]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 46 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 46]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 47 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 47]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 48 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 48]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 49 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 49]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 50 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 50]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 51 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 51]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 52 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 52]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 53 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 53]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 54 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 54]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 55 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 55]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 56 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 56]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 57 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 57]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 58 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 58]] SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 86], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 87], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 88], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 89], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 90], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 91], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 92], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 93], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 94], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 95], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 96], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 97], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 98], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 99], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 16:54:23 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 100], ["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 16:54:23 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 16:54:23 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (23.0ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (1.7ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"59", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] SQL (13.8ms) 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.418403' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms) Completed 200 OK in 234ms (Views: 69.2ms | ActiveRecord: 14.6ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"59", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.593591' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title Completed 302 Found in 46ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"59", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.643181' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"59", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.661246' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.677346' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (16.5ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"32", "post_id"=>"59", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "32"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 32]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.705157' WHERE "blog_posts"."id" = 59 Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.715846' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"33", "post_id"=>"59", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "33"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 33]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.726228' WHERE "blog_posts"."id" = 59 Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title Completed 302 Found in 7ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 59]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.736196' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"34", "post_id"=>"59", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "59"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 59 AND "blog_comments"."id" = ? LIMIT 1 [["id", "34"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 59 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 59 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 34]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.745409' WHERE "blog_posts"."id" = 59 Redirected to http://test.host/blog/posts/59-tis-is-a-blog-post-title Completed 302 Found in 7ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.754929' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"35", "post_id"=>"59", "use_route"=>"blogit"} User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 59], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 59 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:08:41.768140' WHERE "blog_posts"."id" = 59 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"36", "post_id"=>"59", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 38ms (Views: 38.0ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 39ms (Views: 1.4ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (14.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (11.7ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 104], ["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 19:08:41 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/74-something-new Completed 302 Found in 33ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 105], ["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 19:08:41 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/75-something-new Completed 302 Found in 13ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:41 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (174.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 110], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 111], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 112], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 113], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 114], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 115], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 116], ["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 19:08:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:42 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 117 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 118 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.6ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 59 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 59]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 60 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 60]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 61 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 61]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 62 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 62]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 63 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 63]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 64 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 64]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 65 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 65]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 66 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 66]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 67 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 67]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 68 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 68]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 69 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 69]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 70 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 70]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 71 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 71]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 72 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 72]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 73 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 73]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 74 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 74]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 75 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 75]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 76]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 77 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 77]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 78 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 78]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 79 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 79]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 80 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 80]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 81 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 81]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 82 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 82]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 119], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 120], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 121], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 122], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 123], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 124], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 125], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 126], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 127], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 128], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 129], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 130], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 131], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 132], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:08:43 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 133], ["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 19:08:43 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 19:08:43 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count SQL (11.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 134 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 135 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 83 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 83]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 84 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 84]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 85 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 85]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 86 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 86]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 87 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 87]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 88 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 88]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 89 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 89]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 90 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 90]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 91 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 91]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 92 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 92]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 93 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 93]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 94 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 94]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 95 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 95]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 96 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 96]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 97 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 97]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 136], ["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 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 137], ["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 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 138], ["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, 27 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 139], ["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, 26 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 140], ["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, 25 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 141], ["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, 24 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 142], ["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, 23 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 143], ["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, 22 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 144], ["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, 21 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 145], ["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, 20 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 146], ["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, 19 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 147], ["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, 18 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 148], ["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, 17 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 149], ["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, 16 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 150], ["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, 15 Dec 2011 19:09:56 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:09:56 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 5 OFFSET 5 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 5 OFFSET 5  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  SQL (11.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 151 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 152 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 98 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 98]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 99 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 99]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 100 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 100]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 101 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 101]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 102 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 102]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 103 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 103]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 104 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 104]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 105 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 105]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 106 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 106]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 107 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 107]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 108 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 108]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 109 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 109]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 110 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 110]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 111 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 111]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 112 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 112]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 153], ["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 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 154], ["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 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 155], ["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, 27 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 156], ["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, 26 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 157], ["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, 25 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 158], ["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, 24 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 159], ["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, 23 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 160], ["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, 22 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 161], ["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, 21 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 162], ["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, 20 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 163], ["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, 19 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 164], ["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, 18 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 165], ["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, 17 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 166], ["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, 16 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 167], ["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, 15 Dec 2011 19:10:05 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:05 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"113", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] SQL (11.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", Thu, 29 Dec 2011 19:10:11 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:11 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.039817' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms) Completed 200 OK in 222ms (Views: 58.1ms | ActiveRecord: 12.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"113", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.204900' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title Completed 302 Found in 44ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"113", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.253034' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title Completed 302 Found in 17ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"113", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.273803' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title Completed 302 Found in 18ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.292583' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"41", "post_id"=>"113", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "41"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 41]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.305750' WHERE "blog_posts"."id" = 113 Completed 200 OK in 10ms (Views: 1.4ms | ActiveRecord: 0.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.318665' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"42", "post_id"=>"113", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "42"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 42]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.331955' WHERE "blog_posts"."id" = 113 Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 113]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.343178' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"43", "post_id"=>"113", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "113"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 113 AND "blog_comments"."id" = ? LIMIT 1 [["id", "43"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 113 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 113 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 43]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.352639' WHERE "blog_posts"."id" = 113 Redirected to http://test.host/blog/posts/113-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.364568' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"44", "post_id"=>"113", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 113], ["state", nil], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 113 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2011-12-29 19:10:12.378653' WHERE "blog_posts"."id" = 113 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"45", "post_id"=>"113", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 39ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 171], ["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 19:10:12 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/128-something-new Completed 302 Found in 13ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 172], ["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 19:10:12 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/129-something-new Completed 302 Found in 15ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 177], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 178], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 179], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 180], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 181], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 182], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 183], ["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 19:10:12 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 184 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:12 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 185 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 113 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 113]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 114 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 114]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 115 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 115]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 116 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 116]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 117 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 117]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 118 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 118]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 119 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 119]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 120 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 120]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 121 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 121]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 122 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 122]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 123 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 123]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 124 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 124]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 125 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 125]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 126 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 126]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 127 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 127]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 128 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 128]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 129 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 129]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 130 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 130]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 131 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 131]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 132 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 132]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 133 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 133]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.0ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 134 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 134]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 135 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 135]] ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 136 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 136]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 186], ["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 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 187], ["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 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 188], ["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, 27 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 189], ["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, 26 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 190], ["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, 25 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 191], ["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, 24 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 192], ["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, 23 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 193], ["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, 22 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 194], ["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, 21 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 195], ["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, 20 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 196], ["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, 19 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 197], ["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, 18 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 198], ["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, 17 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 199], ["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, 16 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 200], ["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, 15 Dec 2011 19:10:13 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:13 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count SQL (11.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:23 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:23 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 201 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 202 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 137 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 137]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 138 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 138]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 139 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 139]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 140 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 140]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 141 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 141]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 142 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 142]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 143 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 143]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 144 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 144]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 145 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 145]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 146 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 146]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 147 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 147]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 148 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 148]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 149 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 149]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 150 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 150]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 151 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 151]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 203], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 204], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 28 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 205], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 27 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 206], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 26 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 207], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 25 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 208], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 24 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 209], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 23 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 210], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 22 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 211], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 21 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 212], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Tue, 20 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 213], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Mon, 19 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 214], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sun, 18 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 215], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Sat, 17 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 216], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Fri, 16 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:24 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 217], ["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 19:10:24 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 15 Dec 2011 19:10:24 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY updated_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  SQL (11.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 218 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 219 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 152 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 152]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 153 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 153]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 154 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 154]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 155 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 155]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 156 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 156]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 157 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 157]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 158 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 158]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 159 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 159]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 160 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 160]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 161 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 161]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 162 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 162]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 163 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 163]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 164 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 164]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 165 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 165]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 166 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 166]] SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 220], ["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 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 221], ["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 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 222], ["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, 27 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 223], ["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, 26 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 224], ["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, 25 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 225], ["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, 24 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 226], ["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, 23 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 227], ["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, 22 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 228], ["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, 21 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 229], ["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, 20 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 230], ["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, 19 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 231], ["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, 18 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 232], ["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, 17 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 233], ["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, 16 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["password", "password"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 234], ["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, 15 Dec 2011 19:10:41 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 29 Dec 2011 19:10:41 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  Blogit::Post Load (3.7ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.7ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"167", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] SQL (73.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, 04 Jan 2012 21:59:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (12.9ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.034633' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (10.4ms) Completed 200 OK in 543ms (Views: 272.4ms | ActiveRecord: 87.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"167", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.456274' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/167-tis-is-a-blog-post-title Completed 302 Found in 18ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"167", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.477259' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/167-tis-is-a-blog-post-title Completed 302 Found in 27ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"167", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.507506' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/167-tis-is-a-blog-post-title Completed 302 Found in 16ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.524214' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (35.5ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 167]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"50", "post_id"=>"167", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 AND "blog_comments"."id" = ? LIMIT 1 [["id", "50"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 167 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 50]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.576114' WHERE "blog_posts"."id" = 167 Completed 200 OK in 9ms (Views: 1.9ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 167]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.588800' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 167]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"51", "post_id"=>"167", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 AND "blog_comments"."id" = ? LIMIT 1 [["id", "51"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 167 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 51]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.599957' WHERE "blog_posts"."id" = 167 Redirected to http://test.host/blog/posts/167-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 167]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.610533' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"52", "post_id"=>"167", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "167"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 167 AND "blog_comments"."id" = ? LIMIT 1 [["id", "52"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 167 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 167 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 52]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.620524' WHERE "blog_posts"."id" = 167 Redirected to http://test.host/blog/posts/167-tis-is-a-blog-post-title Completed 302 Found in 10ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.633107' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"53", "post_id"=>"167", "use_route"=>"blogit"} User Load (38.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 39ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 21:59:59 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 167], ["state", nil], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 167 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 21:59:59.686002' WHERE "blog_posts"."id" = 167 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"54", "post_id"=>"167", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 81ms (Views: 80.8ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (34.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 238], ["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 21:59:59 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/182-something-new Completed 302 Found in 55ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 239], ["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 21:59:59 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 21:59:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/183-something-new Completed 302 Found in 13ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:00 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 244], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 245], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 246], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 247], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 248], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 249], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (32.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 250], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 251 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 252 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (9.7ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 167 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 167 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 167]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 168 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 168 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 168]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 169 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 169 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 169]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 170 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 170 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 170]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 171 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 171 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 171]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 172 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 172 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 172]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 173 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 173 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 173]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 174 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 174 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 174]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 175 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 175 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 175]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 176 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 176 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 176]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 177 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 177 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 177]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 178 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 178 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 178]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 179 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 179 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 179]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 180 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 180 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 180]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 181 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 181 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 181]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 182 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 182 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 182]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 183 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 183 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 183]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 184 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 184 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 184]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 185 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 185 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 185]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 186 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 186 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 186]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 187 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 187 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 187]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 188 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 188 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 188]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 189 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 189 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 189]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 190 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 190 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 190]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 253], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 254], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 255], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 256], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 257], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 258], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 259], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 260], ["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 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 261], ["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, 27 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 262], ["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, 26 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 263], ["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, 25 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 264], ["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, 24 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 265], ["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, 23 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 266], ["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, 22 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 267], ["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, 21 Dec 2011 22:00:02 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:00:02 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"191", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] SQL (11.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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.638391' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.7ms) Completed 200 OK in 275ms (Views: 87.8ms | ActiveRecord: 12.4ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"191", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.882071' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/191-tis-is-a-blog-post-title Completed 302 Found in 15ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"191", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.900624' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/191-tis-is-a-blog-post-title Completed 302 Found in 17ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"191", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.920937' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/191-tis-is-a-blog-post-title Completed 302 Found in 16ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.937658' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 191]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"59", "post_id"=>"191", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 AND "blog_comments"."id" = ? LIMIT 1 [["id", "59"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 191 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 59]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.949311' WHERE "blog_posts"."id" = 191 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 191]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.963427' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 191]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"60", "post_id"=>"191", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 AND "blog_comments"."id" = ? LIMIT 1 [["id", "60"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 191 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 60]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.975830' WHERE "blog_posts"."id" = 191 Redirected to http://test.host/blog/posts/191-tis-is-a-blog-post-title Completed 302 Found in 8ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 191]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:03:33 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:33 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.986869' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"61", "post_id"=>"191", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "191"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 191 AND "blog_comments"."id" = ? LIMIT 1 [["id", "61"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 191 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 191 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 61]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:33.997573' WHERE "blog_posts"."id" = 191 Redirected to http://test.host/blog/posts/191-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:03:34 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:34.008567' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"62", "post_id"=>"191", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:03:34 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 191], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 191 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:03:34.021983' WHERE "blog_posts"."id" = 191 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"63", "post_id"=>"191", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 271], ["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 22:03:34 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/206-something-new Completed 302 Found in 13ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 272], ["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 22:03:34 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/207-something-new Completed 302 Found in 14ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 277], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 278], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 279], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 280], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 281], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 282], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 283], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 284 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 285 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 191 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 191 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 191]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 192 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 192 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 192]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 193 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 193 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 193]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 194 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 194 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 194]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 195 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 195 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 195]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 196 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 196 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 196]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 197 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 197 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 197]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 198 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 198 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 198]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 199 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 199 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 199]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 200 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 200 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 200]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 201 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 201 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 201]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 202 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 202 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 202]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 203 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 203 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 203]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 204 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 204 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 204]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 205 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 205 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 205]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 206 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 206 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 206]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 207 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 207 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 207]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 208 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 208 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 208]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 209 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 209 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 209]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 210 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 210 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 210]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 211 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 211 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 211]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 212 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 212 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 212]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 213 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 213 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 213]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 214 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 214 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 214]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 286], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 287], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 288], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 289], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 290], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 291], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 292], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 293], ["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 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 294], ["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, 27 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 295], ["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, 26 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 296], ["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, 25 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 297], ["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, 24 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 298], ["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, 23 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 299], ["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, 22 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 300], ["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, 21 Dec 2011 22:03:34 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:03:34 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"215", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] SQL (11.9ms) 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.063273' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.8ms) Completed 200 OK in 285ms (Views: 91.4ms | ActiveRecord: 12.8ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"215", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.317286' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/215-tis-is-a-blog-post-title Completed 302 Found in 15ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"215", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.335513' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/215-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"215", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.354806' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/215-tis-is-a-blog-post-title Completed 302 Found in 18ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.373214' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 215]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"68", "post_id"=>"215", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 AND "blog_comments"."id" = ? LIMIT 1 [["id", "68"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 215 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 68]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.386350' WHERE "blog_posts"."id" = 215 Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 0.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 215]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.400505' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 215]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"69", "post_id"=>"215", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 AND "blog_comments"."id" = ? LIMIT 1 [["id", "69"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 215 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 69]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.412347' WHERE "blog_posts"."id" = 215 Redirected to http://test.host/blog/posts/215-tis-is-a-blog-post-title Completed 302 Found in 10ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 215]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.424894' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"70", "post_id"=>"215", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "215"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 215 AND "blog_comments"."id" = ? LIMIT 1 [["id", "70"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 215 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 215 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 70]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.434972' WHERE "blog_posts"."id" = 215 Redirected to http://test.host/blog/posts/215-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.446189' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"71", "post_id"=>"215", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:04:14 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 215], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 215 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:04:14.458296' WHERE "blog_posts"."id" = 215 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"72", "post_id"=>"215", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 304], ["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 22:04:14 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/230-something-new Completed 302 Found in 12ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 305], ["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 22:04:14 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/231-something-new Completed 302 Found in 14ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 11ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 310], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 311], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 312], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 313], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 314], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 315], ["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 22:04:14 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:14 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 316], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 317 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 318 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 215 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 215 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 215]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 216 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 216 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 216]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 217 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 217 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 217]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 218 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 218 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 218]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 219 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 219 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 219]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 220 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 220 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 220]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 221 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 221 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 221]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 222 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 222 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 222]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 223 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 223 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 223]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 224 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 224 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 224]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 225 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 225 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 225]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 226 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 226 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 226]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 227 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 227 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 227]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 228 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 228 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 228]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 229 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 229 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 229]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 230 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 230 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 230]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 231 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 231 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 231]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 232 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 232 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 232]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 233 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 233 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 233]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 234 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 234 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 234]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 235 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 235 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 235]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 236 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 236 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 236]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 237 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 237 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 237]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 238 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 238 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 238]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 319], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 320], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 321], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 322], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 323], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 324], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 325], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 326], ["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 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 327], ["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, 27 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 328], ["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, 26 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 329], ["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, 25 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 330], ["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, 24 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 331], ["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, 23 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 332], ["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, 22 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 333], ["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, 21 Dec 2011 22:04:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:04:15 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"239", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] SQL (13.6ms) 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, 04 Jan 2012 22:13:57 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:57 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:57.749123' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.7ms) Completed 200 OK in 354ms (Views: 87.4ms | ActiveRecord: 14.5ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"239", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.067506' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/239-tis-is-a-blog-post-title Completed 302 Found in 15ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"239", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.086407' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/239-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"239", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.104443' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/239-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.120897' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 239]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"77", "post_id"=>"239", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 AND "blog_comments"."id" = ? LIMIT 1 [["id", "77"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 77]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.134949' WHERE "blog_posts"."id" = 239 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.9ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 239]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.148256' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 239]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"78", "post_id"=>"239", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 AND "blog_comments"."id" = ? LIMIT 1 [["id", "78"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 239 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 78]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.161441' WHERE "blog_posts"."id" = 239 Redirected to http://test.host/blog/posts/239-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 239]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.173529' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"79", "post_id"=>"239", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "239"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 239 AND "blog_comments"."id" = ? LIMIT 1 [["id", "79"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 239 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 239 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 79]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.184603' WHERE "blog_posts"."id" = 239 Redirected to http://test.host/blog/posts/239-tis-is-a-blog-post-title Completed 302 Found in 11ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.197921' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"80", "post_id"=>"239", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:13:58 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 239], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 239 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:13:58.211270' WHERE "blog_posts"."id" = 239 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"81", "post_id"=>"239", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 337], ["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 22:13:58 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/254-something-new Completed 302 Found in 13ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 338], ["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 22:13:58 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/255-something-new Completed 302 Found in 49ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 13ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 343], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 344], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 345], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 346], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 347], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 348], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 349], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 350 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 351 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 239 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 239 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 239]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 240 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 240 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 240]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 241 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 241 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 241]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 242 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 242 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 242]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 243 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 243 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 243]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 244 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 244 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 244]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 245 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 245 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 245]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 246 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 246 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 246]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 247 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 247 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 247]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 248 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 248 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 248]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 249 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 249 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 249]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 250 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 250 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 250]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 251 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 251 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 251]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 252 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 252 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 252]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 253 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 253 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 253]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 254 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 254 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 254]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 255 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 255 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 255]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 256 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 256 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 256]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 257 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 257 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 257]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 258 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 258 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 258]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 259 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 259 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 259]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 260 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 260 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 260]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 261 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 261 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 261]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 262 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 262 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 262]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 352], ["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 22:13:58 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:58 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 353], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 354], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 355], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 356], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 357], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 358], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 359], ["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 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 360], ["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, 27 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 361], ["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, 26 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 362], ["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, 25 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 363], ["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, 24 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 364], ["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, 23 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 365], ["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, 22 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 366], ["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, 21 Dec 2011 22:13:59 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:13:59 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count SQL (14.1ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 367 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "Jeronimo"]] User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 368 LIMIT 1 Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 263 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 263 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 263]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 264 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 264 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 264]] ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 265 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 265 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 265]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 266 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 266 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 266]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 267 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 267 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 267]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 268 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 268 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 268]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 269 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 269 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 269]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 270 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 270 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 270]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 271 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 271 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 271]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 272 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 272 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 272]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 273 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 273 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 273]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 274 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 274 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 274]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 275 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 275 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 275]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 276 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 276 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 276]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 277 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 277 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 277]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 369], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 370], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 371], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 372], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 373], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 374], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 375], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 376], ["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 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 377], ["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, 27 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 378], ["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, 26 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 379], ["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, 25 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 380], ["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, 24 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 381], ["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, 23 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 382], ["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, 22 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 383], ["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, 21 Dec 2011 22:34:42 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:42 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>"278", "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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] SQL (11.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, 04 Jan 2012 22:34:48 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:48 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:48.804658' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.5ms) Completed 200 OK in 270ms (Views: 85.7ms | ActiveRecord: 12.4ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"278", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.044439' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/278-tis-is-a-blog-post-title Completed 302 Found in 15ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"278", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.062661' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/278-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"278", "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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.081650' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/278-tis-is-a-blog-post-title Completed 302 Found in 17ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.099695' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 278]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"86", "post_id"=>"278", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 AND "blog_comments"."id" = ? LIMIT 1 [["id", "86"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 278 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 86]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.113538' WHERE "blog_posts"."id" = 278 Completed 200 OK in 8ms (Views: 1.5ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 278]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.124830' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 278]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"87", "post_id"=>"278", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 AND "blog_comments"."id" = ? LIMIT 1 [["id", "87"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 278 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 87]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.137771' WHERE "blog_posts"."id" = 278 Redirected to http://test.host/blog/posts/278-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 278]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.149126' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"88", "post_id"=>"278", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "278"]] Blogit::Comment Load (0.0ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 278 AND "blog_comments"."id" = ? LIMIT 1 [["id", "88"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 278 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 278 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 88]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.159871' WHERE "blog_posts"."id" = 278 Redirected to http://test.host/blog/posts/278-tis-is-a-blog-post-title Completed 302 Found in 10ms Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.172179' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"89", "post_id"=>"278", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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, 04 Jan 2012 22:34:49 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 278], ["state", nil], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["website", "http://gavinmorrice.com"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 278 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-04 22:34:49.187486' WHERE "blog_posts"."id" = 278 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"90", "post_id"=>"278", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.0ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 387], ["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 22:34:49 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/293-something-new Completed 302 Found in 13ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 388], ["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 22:34:49 UTC +00:00], ["title", "Something new"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/294-something-new Completed 302 Found in 44ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 10ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 2ms SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 393], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 394], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 395], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 396], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 397], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 398], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "bodacious"]] SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 399], ["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 22:34:49 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00]] Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 400 LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:49 UTC +00:00], ["username", "Jeronimo"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 401 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 278 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 278 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 278]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 279 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 279 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 279]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 280 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 280 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 280]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 281 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 281 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 281]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 282 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 282 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 282]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 283 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 283 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 283]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 284 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 284 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 284]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 285 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 285 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 285]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 286 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 286 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 286]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 287 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 287 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 287]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 288 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 288 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 288]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 289 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 289 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 289]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 290 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 290 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 290]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 291 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 291 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 291]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 292 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 292 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 292]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 293 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 293 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 293]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 294 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 294 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 294]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 295 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 295 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 295]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 296 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 296 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 296]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 297 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 297 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 297]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 298 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 298 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 298]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 299 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 299 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 299]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 300 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 300 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 300]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 301 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 301 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 301]] SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 402], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 403], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 404], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 405], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 406], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 407], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.2ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 408], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 409], ["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 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 410], ["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, 27 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 411], ["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, 26 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 412], ["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, 25 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 413], ["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, 24 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.2ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 414], ["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, 23 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 415], ["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, 22 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  SQL (0.3ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["password", "password"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00], ["username", "bodacious"]] SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 416], ["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, 21 Dec 2011 22:34:50 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Wed, 04 Jan 2012 22:34:50 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Processing by Blogit::CommentsController#create as JS 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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.679683' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms) Completed 200 OK in 268ms (Views: 68.1ms | ActiveRecord: 72.5ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.857161' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title Completed 302 Found in 49ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.909716' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title Completed 302 Found in 15ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.928427' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title Completed 302 Found in 18ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.947851' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"95", "post_id"=>"302", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 95]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.960234' WHERE "blog_posts"."id" = 302 Completed 200 OK in 12ms (Views: 1.5ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.974691' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"96", "post_id"=>"302", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 96]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.986532' WHERE "blog_posts"."id" = 302 Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 302]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:30.998279' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"97", "post_id"=>"302", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "302"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 302 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 302 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 97]] SQL (0.1ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.008166' WHERE "blog_posts"."id" = 302 Redirected to http://test.host/blog/posts/302-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.019074' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"98", "post_id"=>"302", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 302 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:27:31.032186' WHERE "blog_posts"."id" = 302 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"99", "post_id"=>"302", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 101ms (Views: 100.4ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/317-something-new Completed 302 Found in 13ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/318-something-new Completed 302 Found in 16ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 45ms User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 433 LIMIT 1 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 434 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 302 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 302 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 302]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 303 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 303 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 303]] ActsAsTaggableOn::Tagging Load (0.3ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 304 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 304 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 304]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 305 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 305 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 305]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 306 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 306 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 306]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 307 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 307 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 307]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 308 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 308 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 308]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 309 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 309 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 309]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 310 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 310 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 310]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 311 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 311 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 311]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 312 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 312 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 312]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 313 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 313 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 313]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 314 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 314 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 314]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 315 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 315 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 315]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 316 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 316 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 316]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 317 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 317 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 317]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 318 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 318 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 318]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 319 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 319 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 319]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 320 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 320 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 320]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 321 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 321 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 321]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 322 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 322 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 322]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 323 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 323 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 323]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 324 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 324 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 324]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 325 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 325 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 325]] 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Processing by Blogit::CommentsController#create as JS 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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:22.916728' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.4ms) Completed 200 OK in 275ms (Views: 68.5ms | ActiveRecord: 37.0ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.136689' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title Completed 302 Found in 42ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.183031' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title Completed 302 Found in 16ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.201809' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title Completed 302 Found in 17ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.219319' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"104", "post_id"=>"326", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 104]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.232652' WHERE "blog_posts"."id" = 326 Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 0.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.245755' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"105", "post_id"=>"326", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 105]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.257467' WHERE "blog_posts"."id" = 326 Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title Completed 302 Found in 11ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 326]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.271293' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"106", "post_id"=>"326", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "326"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 326 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 326 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 106]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.282500' WHERE "blog_posts"."id" = 326 Redirected to http://test.host/blog/posts/326-tis-is-a-blog-post-title Completed 302 Found in 11ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.296030' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"107", "post_id"=>"326", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 326 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:39:23.308437' WHERE "blog_posts"."id" = 326 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"108", "post_id"=>"326", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 51ms (Views: 50.5ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 6ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/341-something-new Completed 302 Found in 14ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/342-something-new Completed 302 Found in 13ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 43ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] 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]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 466 LIMIT 1 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 467 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 326 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 326 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 326]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 327 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 327 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 327]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 328 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 328 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 328]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 329 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 329 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 329]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 330 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 330 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 330]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 331 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 331 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 331]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 332 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 332 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 332]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 333 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 333 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 333]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 334 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 334 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 334]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 335 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 335 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 335]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 336 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 336 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 336]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 337 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 337 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 337]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 338 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 338 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 338]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 339 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 339 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 339]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 340 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 340 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 340]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 341 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 341 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 341]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 342 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 342 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 342]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 343 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 343 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 343]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 344 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 344 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 344]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 345 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 345 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 345]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 346 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 346 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 346]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 347 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 347 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 347]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 348 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 348 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 348]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 349 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 349 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 349]] 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Processing by Blogit::CommentsController#create as JS 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"} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.181230' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (9.3ms) Completed 200 OK in 277ms (Views: 61.8ms | ActiveRecord: 37.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.403186' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title Completed 302 Found in 46ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.453257' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title Completed 302 Found in 16ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML 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"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.473096' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title Completed 302 Found in 18ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.491835' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>"113", "post_id"=>"350", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 113]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.505376' WHERE "blog_posts"."id" = 350 Completed 200 OK in 12ms (Views: 1.4ms | ActiveRecord: 0.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.520802' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"114", "post_id"=>"350", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 114]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.536264' WHERE "blog_posts"."id" = 350 Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title Completed 302 Found in 11ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 350]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.549840' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"115", "post_id"=>"350", "use_route"=>"blogit"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "350"]] 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"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 350 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 350 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 115]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.560408' WHERE "blog_posts"."id" = 350 Redirected to http://test.host/blog/posts/350-tis-is-a-blog-post-title Completed 302 Found in 9ms Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.571783' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"116", "post_id"=>"350", "use_route"=>"blogit"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 2ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 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"]] SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 350 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2012-01-11 09:46:48.586362' WHERE "blog_posts"."id" = 350 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"117", "post_id"=>"350", "use_route"=>"blogit"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2", "use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>"", "use_route"=>"blogit"} Completed 200 OK in 51ms (Views: 51.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 7ms (Views: 1.3ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Parameters: {"use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#create as HTML 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"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/365-something-new Completed 302 Found in 15ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Redirected to http://test.host/blog/posts/366-something-new Completed 302 Found in 13ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}, "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 44ms User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 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"]] Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1", "use_route"=>"blogit"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Completed 302 Found in 1ms 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 499 LIMIT 1 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"]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 500 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 350 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 350 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 350]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 351 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 351 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 351]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 352 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 352 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 352]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 353 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 353 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 353]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 354 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 354 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 354]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 355 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 355 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 355]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 356 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 356 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 356]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 357 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 357 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 357]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 358 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 358 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 358]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 359 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 359 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 359]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 360 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 360 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 360]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 361 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 361 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 361]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 362 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 362 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 362]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 363 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 363 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 363]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 364 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 364 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 364]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 365 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 365 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 365]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 366 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 366 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 366]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 367 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 367 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 367]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 368 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 368 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 368]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 369 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 369 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 369]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 370 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 370 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 370]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 371 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 371 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 371]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 372 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 372 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 372]] ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 373 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 373 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.1ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 373]] 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" 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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  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"]] 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]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 5 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "blog_posts" LIMIT 3 OFFSET 0) subquery_for_count