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