Connecting to database specified by database.yml Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 56ms (Views: 55.6ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 46ms (Views: 45.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML Completed 500 Internal Server Error in 1ms Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 500 Internal Server Error in 1ms Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Completed 500 Internal Server Error in 1ms Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Completed 500 Internal Server Error in 1ms SQL (12.8ms) DELETE FROM "blog_posts" SQLite3::SQLException: no such table: blog_posts: DELETE FROM "blog_posts" SQL (0.2ms) DELETE FROM "blog_posts" SQLite3::SQLException: no such table: blog_posts: DELETE FROM "blog_posts" SQL (0.2ms) DELETE FROM "blog_posts" SQLite3::SQLException: no such table: blog_posts: DELETE FROM "blog_posts" SQL (0.1ms) DELETE FROM "blog_posts" SQLite3::SQLException: no such table: blog_posts: DELETE FROM "blog_posts" Connecting to database specified by database.yml  (0.2ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20110814091304)  (0.0ms) select sqlite_version(*)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "password" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110814091304')  (2.6ms) commit transaction Migrating to CreateBlogPosts (20110814091434)  (0.0ms) begin transaction  (0.5ms) 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 NOT NULL, "updated_at" datetime NOT NULL)  (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 ('20110814091434')  (22.0ms) commit transaction Migrating to CreateBlogComments (20110814093229)  (0.1ms) begin transaction  (0.4ms) 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 NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_blog_comments_on_post_id" ON "blog_comments" ("post_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110814093229')  (2.7ms) commit transaction Migrating to ActsAsTaggableOnMigration (20110814103306)  (0.0ms) begin transaction  (0.4ms) 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.1ms) CREATE INDEX "index_taggings_on_tag_id" ON "taggings" ("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 ('20110814103306')  (2.8ms) commit transaction Migrating to CreatePeople (20110819103335)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110819103335')  (4.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction SQL (37.9ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (13.2ms) commit transaction  (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!"}} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 1 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.259378' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.4ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (33.4ms) Completed 200 OK in 278ms (Views: 56.5ms | ActiveRecord: 4.9ms)  (0.3ms) 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!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.523107' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 11ms (ActiveRecord: 4.1ms)  (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 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!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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" = '2013-01-17 21:12:25.539359' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 9ms (ActiveRecord: 4.0ms) 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!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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" = '2013-01-17 21:12:25.554369' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.5ms) commit transaction Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 14ms (ActiveRecord: 7.6ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.574807' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction 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 JS Parameters: {"id"=>5, "post_id"=>1} 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]]  (0.0ms) begin transaction 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" = '2013-01-17 21:12:25.588415' WHERE "blog_posts"."id" = 1  (3.1ms) commit transaction Completed 200 OK in 12ms (Views: 2.9ms | ActiveRecord: 4.1ms) 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.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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" = '2013-01-17 21:12:25.602781' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction 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"} 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", "6"]]  (0.1ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 1 LIMIT 1 SQL (0.3ms) 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" = '2013-01-17 21:12:25.615975' WHERE "blog_posts"."id" = 1  (2.9ms) commit transaction Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 9ms (ActiveRecord: 4.0ms) 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  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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" = '2013-01-17 21:12:25.627848' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"7", "post_id"=>"1"} 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", "7"]]  (0.0ms) begin transaction 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.5ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.637921' WHERE "blog_posts"."id" = 1  (3.8ms) commit transaction Redirected to http://test.host/blog/posts/1-tis-is-a-blog-post-title Completed 302 Found in 9ms (ActiveRecord: 4.9ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction SQL (0.9ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.650157' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"8", "post_id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:12:25 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 1], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:12:25 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.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:12:25.664197' WHERE "blog_posts"."id" = 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.1ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"9", "post_id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments"  Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 2.1ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (2.5ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.4ms) commit transaction Redirected to http://test.host/blog/posts/2-something-new Completed 302 Found in 12ms (ActiveRecord: 7.9ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (5.8ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.0ms) commit transaction Redirected to http://test.host/blog/posts/3-something-new Completed 302 Found in 13ms (ActiveRecord: 7.6ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (3.4ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (4.6ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (4.0ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.8ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.4ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (8.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00], ["username", "bodacious"]]  (7.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:25 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:25 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (7.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (10.5ms) commit transaction SQL (10.2ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (9.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (9.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (10.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (13.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 18], ["blogger_type", "User"], ["body", "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, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.5ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (2.9ms) DELETE FROM "blog_posts" SQL (2.8ms) DELETE FROM "blog_posts" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (3.1ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 19], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (7.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (7.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (6.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (8.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (9.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (8.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "Jeronimo"]]  (2.6ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 26 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "Jeronimo"]]  (10.0ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 27 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (0.0ms) begin transaction 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.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 12]]  (2.6ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 13]]  (7.1ms) commit transaction  (0.0ms) begin transaction 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]]  (5.7ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 15]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 16]]  (2.5ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) 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]]  (2.7ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 18]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction  (0.0ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction 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", Wed, 16 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (15.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Tue, 15 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (10.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (9.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 14 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (10.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (8.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 13 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (10.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.8ms) 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", Sat, 12 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (16.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00], ["username", "bodacious"]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Fri, 11 Jan 2013 21:12:26 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:26 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (235.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (25.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 35], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 10 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 36], ["blogger_type", "User"], ["body", "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, 09 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (3.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 37], ["blogger_type", "User"], ["body", "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, 08 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (21.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (5.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Mon, 07 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 06 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (7.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (10.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 40], ["blogger_type", "User"], ["body", "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, 05 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (10.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 41], ["blogger_type", "User"], ["body", "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, 04 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00], ["username", "bodacious"]]  (10.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 42], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 03 Jan 2013 21:12:27 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:12:27 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.7ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1  (0.3ms) 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 Connecting to database specified by database.yml 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" = 19 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>19, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (7.9ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) begin transaction SQL (19.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, 17 Jan 2013 21:18:18 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18:18 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 19 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:18.909436' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.6ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (32.9ms) Completed 200 OK in 359ms (Views: 48.0ms | ActiveRecord: 32.1ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 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" = 19 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"19", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "19"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 19 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.155614' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.3ms) commit transaction Redirected to http://test.host/blog/posts/19-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.4ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"19", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "19"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 19 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.176503' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.2ms) commit transaction Redirected to http://test.host/blog/posts/19-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.4ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"19", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "19"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 19 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.197424' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (21.5ms) commit transaction Redirected to http://test.host/blog/posts/19-tis-is-a-blog-post-title Completed 302 Found in 33ms (ActiveRecord: 22.7ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18: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" = 19 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.236561' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>14, "post_id"=>19} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 AND "blog_comments"."id" = ? LIMIT 1 [["id", 14]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 19 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 14]] SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.265151' WHERE "blog_posts"."id" = 19  (3.0ms) commit transaction Completed 200 OK in 14ms (Views: 2.4ms | ActiveRecord: 4.2ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18: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" = 19 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.282589' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (13.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"15", "post_id"=>"19"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "19"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 AND "blog_comments"."id" = ? LIMIT 1 [["id", "15"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 19 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 15]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.306071' WHERE "blog_posts"."id" = 19  (10.1ms) commit transaction Redirected to http://test.host/blog/posts/19-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 11.0ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18: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" = 19 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.325885' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (12.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"16", "post_id"=>"19"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "19"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 19 AND "blog_comments"."id" = ? LIMIT 1 [["id", "16"]]  (0.1ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 19 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 19 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 16]] SQL (0.5ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.348373' WHERE "blog_posts"."id" = 19  (8.9ms) commit transaction Redirected to http://test.host/blog/posts/19-tis-is-a-blog-post-title Completed 302 Found in 16ms (ActiveRecord: 10.3ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18: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" = 19 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.365692' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.0ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"17", "post_id"=>"19"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 19], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:18: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" = 19 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:18:19.391725' WHERE "blog_posts"."id" = 19 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.8ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"18", "post_id"=>"19"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 101ms (Views: 101.1ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (2.5ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (8.0ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (11.4ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (9.4ms) commit transaction Redirected to http://test.host/blog/posts/34-something-new Completed 302 Found in 21ms (ActiveRecord: 10.1ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (13.0ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (1.7ms) 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, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (7.7ms) commit transaction Redirected to http://test.host/blog/posts/35-something-new Completed 302 Found in 22ms (ActiveRecord: 9.7ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (9.8ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (14.1ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (10.5ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (5.6ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 52], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.7ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.4ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (22.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (18.7ms) commit transaction  (0.0ms) begin transaction 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, 17 Jan 2013 21:18:19 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (5.3ms) commit transaction SQL (2.8ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:18:19 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (9.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (6.3ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (16.0ms) DELETE FROM "blog_posts" SQL (20.5ms) DELETE FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (6.2ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (22.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (12.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (20.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (13.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (13.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (20.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (10.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (21.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (20.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00], ["username", "bodacious"]]  (12.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:18:20 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (20.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "Jeronimo"]]  (2.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 67 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "Jeronimo"]]  (14.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 68 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 44 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 44]]  (3.0ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 45]]  (2.7ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 46]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 47]]  (2.2ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 48]]  (22.8ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 49]]  (19.4ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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]]  (15.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (19.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 69], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (20.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 70], ["blogger_type", "User"], ["body", "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, 16 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (15.5ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) 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", Tue, 15 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (18.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (4.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 14 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 73], ["blogger_type", "User"], ["body", "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, 13 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 74], ["blogger_type", "User"], ["body", "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, 12 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 75], ["blogger_type", "User"], ["body", "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, 11 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 76], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 10 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Wed, 09 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Tue, 08 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 07 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (3.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 06 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (5.4ms) commit transaction  (0.0ms) begin transaction SQL (0.6ms) 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", Sat, 05 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (17.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 04 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00], ["username", "bodacious"]]  (19.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 03 Jan 2013 21:18:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:18:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.3ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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  Connecting to database specified by database.yml 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" = 51 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>51, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (3.7ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 51]]  (0.1ms) begin transaction SQL (2.2ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 51 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.342249' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (34.4ms) Completed 200 OK in 229ms (Views: 52.1ms | ActiveRecord: 9.8ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 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" = 51 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"51", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "51"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.544008' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (23.6ms) commit transaction Redirected to http://test.host/blog/posts/51-tis-is-a-blog-post-title Completed 302 Found in 38ms (ActiveRecord: 24.7ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"51", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "51"]]  (0.1ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 51 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.590424' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (22.2ms) commit transaction Redirected to http://test.host/blog/posts/51-tis-is-a-blog-post-title Completed 302 Found in 37ms (ActiveRecord: 23.7ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"51", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "51"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.631956' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (25.0ms) commit transaction Redirected to http://test.host/blog/posts/51-tis-is-a-blog-post-title Completed 302 Found in 38ms (ActiveRecord: 26.3ms) Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 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" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.676514' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.7ms) commit transaction User Load (1.4ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 51]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>23, "post_id"=>51} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 51]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 AND "blog_comments"."id" = ? LIMIT 1 [["id", 23]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 51 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 23]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.703062' WHERE "blog_posts"."id" = 51  (3.4ms) commit transaction Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 4.4ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 51]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 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" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.717179' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.4ms) commit transaction 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", 51]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"24", "post_id"=>"51"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "51"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 AND "blog_comments"."id" = ? LIMIT 1 [["id", "24"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 51 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 24]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.736424' WHERE "blog_posts"."id" = 51  (5.9ms) commit transaction Redirected to http://test.host/blog/posts/51-tis-is-a-blog-post-title Completed 302 Found in 11ms (ActiveRecord: 6.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 51]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 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" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.750919' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.0ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"25", "post_id"=>"51"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "51"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 51 AND "blog_comments"."id" = ? LIMIT 1 [["id", "25"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 51 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 51 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 25]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.767591' WHERE "blog_posts"."id" = 51  (8.1ms) commit transaction Redirected to http://test.host/blog/posts/51-tis-is-a-blog-post-title Completed 302 Found in 14ms (ActiveRecord: 9.0ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 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" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.786661' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.6ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"26", "post_id"=>"51"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:20 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 51], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:22:20 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" = 51 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:22:20.803930' WHERE "blog_posts"."id" = 51 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.1ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"27", "post_id"=>"51"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 60ms (Views: 59.5ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["username", "bodacious"]]  (13.5ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["username", "bodacious"]]  (8.2ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:22:20 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction Redirected to http://test.host/blog/posts/66-something-new Completed 302 Found in 15ms (ActiveRecord: 3.5ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:20 UTC +00:00], ["username", "bodacious"]]  (11.2ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:22:21 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction Redirected to http://test.host/blog/posts/67-something-new Completed 302 Found in 15ms (ActiveRecord: 3.5ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (7.7ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (101.5ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (10.8ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (3.5ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction 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, 17 Jan 2013 21:22:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.5ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:22:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (23.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (8.7ms) commit transaction  (0.0ms) begin transaction SQL (0.8ms) 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, 17 Jan 2013 21:22:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.3ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (9.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:22:21 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (14.4ms) commit transaction SQL (6.2ms) DELETE FROM "blog_posts"  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (12.0ms) commit transaction  (0.0ms) begin transaction 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (13.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (18.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (11.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00], ["username", "bodacious"]]  (5.9ms) commit transaction  (0.0ms) begin transaction 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", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:22:21 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (12.7ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (14.8ms) DELETE FROM "blog_posts" SQL (12.6ms) DELETE FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (3.0ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 101], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (21.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (8.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 102], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (12.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 103], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (11.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (13.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (10.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (12.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (13.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 106], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (12.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (12.9ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 107], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (12.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "Jeronimo"]]  (3.4ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 108 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "Jeronimo"]]  (10.0ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 109 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 76 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.4ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 76]]  (3.7ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 77]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 78]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 79]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 80]]  (2.4ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 81]]  (16.3ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 82]]  (17.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (32.5ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (4.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Wed, 16 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction 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", Tue, 15 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (10.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 14 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (17.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (11.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Sun, 13 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (12.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sat, 12 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 11 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.7ms) SELECT "blog_posts".* FROM "blog_posts"  (12.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (14.5ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 117], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 10 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (11.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 118], ["blogger_type", "User"], ["body", "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, 09 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Tue, 08 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (1.1ms) 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", Mon, 07 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (14.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.0ms) begin transaction 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", Sun, 06 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (15.2ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (3.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sat, 05 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (8.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 04 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (18.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 03 Jan 2013 21:22:22 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:22:22 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.2ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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  Connecting to database specified by database.yml 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" = 83 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>83, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (3.7ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]  (0.1ms) begin transaction SQL (2.1ms) 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.244171' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.0ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (33.1ms) Completed 200 OK in 210ms (Views: 47.5ms | ActiveRecord: 9.6ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 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" = 83 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"83", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.432482' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.2ms) commit transaction Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.3ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"83", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.453177' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.1ms) commit transaction Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.2ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"83", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]]  (0.3ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.473815' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title Completed 302 Found in 16ms (ActiveRecord: 4.6ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 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" = 83 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.494468' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.0ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>32, "post_id"=>83} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1 [["id", 32]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 32]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.517564' WHERE "blog_posts"."id" = 83  (3.2ms) commit transaction Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 4.2ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 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" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.531162' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.1ms) commit transaction 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", 83]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"33", "post_id"=>"83"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1 [["id", "33"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 33]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.552001' WHERE "blog_posts"."id" = 83  (7.6ms) commit transaction Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title Completed 302 Found in 20ms (ActiveRecord: 8.4ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 83]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 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" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.576131' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.9ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"34", "post_id"=>"83"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "83"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 83 AND "blog_comments"."id" = ? LIMIT 1 [["id", "34"]]  (0.0ms) begin transaction Blogit::Post Load (0.4ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 83 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 83 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 34]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.587417' WHERE "blog_posts"."id" = 83  (4.6ms) commit transaction Redirected to http://test.host/blog/posts/83-tis-is-a-blog-post-title Completed 302 Found in 11ms (ActiveRecord: 5.7ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 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" = 83 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.600178' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.7ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"35", "post_id"=>"83"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:15 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 83], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:23:15 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" = 83 SQL (1.0ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:23:15.631973' WHERE "blog_posts"."id" = 83 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (10.2ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"36", "post_id"=>"83"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 54ms (Views: 54.2ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (4.4ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (1.0ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (5.2ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:23:15 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction Redirected to http://test.host/blog/posts/98-something-new Completed 302 Found in 15ms (ActiveRecord: 3.7ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (9.5ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:23:15 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (4.5ms) commit transaction Redirected to http://test.host/blog/posts/99-something-new Completed 302 Found in 16ms (ActiveRecord: 5.2ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (5.8ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (8.9ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (6.5ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 134], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:15 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.6ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.4ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 135], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (7.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (11.8ms) commit transaction  (0.0ms) begin transaction 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, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (14.2ms) commit transaction SQL (12.3ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (14.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (13.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (15.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (22.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (12.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.1ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (4.9ms) DELETE FROM "blog_posts" SQL (2.9ms) DELETE FROM "blog_posts" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (10.6ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (24.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (8.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (11.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (8.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (3.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "bodacious"]]  (10.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "Jeronimo"]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 149 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:16 UTC +00:00], ["username", "Jeronimo"]]  (11.0ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 150 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction 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.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 108]]  (4.9ms) commit transaction  (0.0ms) begin transaction 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]]  (5.7ms) commit transaction  (0.0ms) begin transaction 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]]  (15.2ms) commit transaction  (0.1ms) begin transaction 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]]  (12.9ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 112]]  (2.3ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 113]]  (18.4ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 114]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (8.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 151], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 152], ["blogger_type", "User"], ["body", "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, 16 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction 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", Tue, 15 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (9.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 14 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (14.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 13 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (10.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sat, 12 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (11.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 11 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (6.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Thu, 10 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (11.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (14.2ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) 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", Wed, 09 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (13.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Tue, 08 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (12.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 07 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (11.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 06 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sat, 05 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (16.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (11.7ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) 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", Fri, 04 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (13.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00], ["username", "bodacious"]]  (5.0ms) commit transaction  (0.0ms) begin transaction 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", Thu, 03 Jan 2013 21:23:17 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:23:17 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (6.0ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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  Connecting to database specified by database.yml 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" = 115 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>115, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (3.8ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 115]]  (0.1ms) begin transaction SQL (2.2ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 115 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.508492' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.8ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (34.5ms) Completed 200 OK in 214ms (Views: 48.9ms | ActiveRecord: 10.5ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 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" = 115 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"115", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "115"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.700002' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.7ms) commit transaction Redirected to http://test.host/blog/posts/115-tis-is-a-blog-post-title Completed 302 Found in 16ms (ActiveRecord: 4.8ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"115", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "115"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.721026' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.7ms) commit transaction Redirected to http://test.host/blog/posts/115-tis-is-a-blog-post-title Completed 302 Found in 17ms (ActiveRecord: 5.9ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"115", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "115"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26:45 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.742833' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Redirected to http://test.host/blog/posts/115-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.4ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26: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" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.763283' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 115]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>41, "post_id"=>115} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 115]] Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 AND "blog_comments"."id" = ? LIMIT 1 [["id", 41]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 115 SQL (0.2ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 41]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.784731' WHERE "blog_posts"."id" = 115  (3.2ms) commit transaction Completed 200 OK in 11ms (Views: 1.8ms | ActiveRecord: 4.3ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 115]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26: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" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.798184' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.0ms) commit transaction 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", 115]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"42", "post_id"=>"115"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "115"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 AND "blog_comments"."id" = ? LIMIT 1 [["id", "42"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 115 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 42]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.825044' WHERE "blog_posts"."id" = 115  (6.5ms) commit transaction Redirected to http://test.host/blog/posts/115-tis-is-a-blog-post-title Completed 302 Found in 12ms (ActiveRecord: 7.3ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 115]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26: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" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.840487' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.8ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"43", "post_id"=>"115"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "115"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 115 AND "blog_comments"."id" = ? LIMIT 1 [["id", "43"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 115 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 115 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 43]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.855986' WHERE "blog_posts"."id" = 115  (8.7ms) commit transaction Redirected to http://test.host/blog/posts/115-tis-is-a-blog-post-title Completed 302 Found in 14ms (ActiveRecord: 9.6ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26: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" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.872644' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.5ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"44", "post_id"=>"115"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:26:45 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 115], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:26: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" = 115 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:26:45.900509' WHERE "blog_posts"."id" = 115 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (46.1ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"45", "post_id"=>"115"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.2ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 67ms (Views: 67.2ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (20.5ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.2ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (14.2ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 169], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.7ms) commit transaction Redirected to http://test.host/blog/posts/130-something-new Completed 302 Found in 14ms (ActiveRecord: 3.4ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (12.3ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 170], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction Redirected to http://test.host/blog/posts/131-something-new Completed 302 Found in 15ms (ActiveRecord: 3.6ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.3ms)  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (7.0ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (5.6ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (10.8ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 175], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (10.0ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.4ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 176], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (15.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (10.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (15.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:26:46 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (10.1ms) commit transaction SQL (3.0ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (17.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (9.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (4.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:26:46 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (15.4ms) DELETE FROM "blog_posts" SQL (6.2ms) DELETE FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (6.3ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (27.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (12.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 184], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 185], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (16.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (18.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (26.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (9.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "Jeronimo"]]  (2.8ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 190 LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "Jeronimo"]]  (11.1ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 191 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction 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.4ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 140]]  (2.6ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 141]]  (2.7ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 142]]  (2.5ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 143]]  (2.4ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 144]]  (2.4ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 145]]  (2.4ms) commit transaction  (0.0ms) begin transaction 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.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 146]]  (28.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (9.2ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (16.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (11.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Wed, 16 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (13.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Tue, 15 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (5.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Mon, 14 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (17.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (9.9ms) commit transaction  (0.0ms) begin transaction SQL (0.7ms) 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", Sun, 13 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (16.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) 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", Sat, 12 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (10.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Fri, 11 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (8.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Thu, 10 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (8.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (5.3ms) commit transaction  (0.0ms) begin transaction 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", Wed, 09 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 201], ["blogger_type", "User"], ["body", "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, 08 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 202], ["blogger_type", "User"], ["body", "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, 07 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (5.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction 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", Sun, 06 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Sat, 05 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (25.4ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (9.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Fri, 04 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (16.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00], ["username", "bodacious"]]  (10.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 03 Jan 2013 21:26:47 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:26:47 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (16.0ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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  Connecting to database specified by database.yml 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" = 147 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>147, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (3.7ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]]  (0.1ms) begin transaction SQL (21.2ms) INSERT INTO "blog_comments" ("body", "created_at", "email", "name", "post_id", "state", "updated_at", "website") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["body", "I once saw a child the size of a tangerine!"], ["created_at", Thu, 17 Jan 2013 21:29:28 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:28 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 147 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:28.801416' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (27.5ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (34.6ms) Completed 200 OK in 267ms (Views: 54.4ms | ActiveRecord: 53.2ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 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" = 147 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"147", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "147"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.024628' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.2ms) commit transaction Redirected to http://test.host/blog/posts/147-tis-is-a-blog-post-title Completed 302 Found in 17ms (ActiveRecord: 5.4ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"147", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "147"]]  (0.1ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.4ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 147 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.049110' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (25.1ms) commit transaction Redirected to http://test.host/blog/posts/147-tis-is-a-blog-post-title Completed 302 Found in 43ms (ActiveRecord: 26.8ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"147", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "147"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.095743' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Redirected to http://test.host/blog/posts/147-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 4.5ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 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" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.116539' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (9.4ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>50, "post_id"=>147} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]] Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 AND "blog_comments"."id" = ? LIMIT 1 [["id", 50]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 147 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 50]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.147827' WHERE "blog_posts"."id" = 147  (3.2ms) commit transaction Completed 200 OK in 12ms (Views: 2.1ms | ActiveRecord: 4.3ms) Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 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" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.172527' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"51", "post_id"=>"147"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "147"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 AND "blog_comments"."id" = ? LIMIT 1 [["id", "51"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 147 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 51]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.189421' WHERE "blog_posts"."id" = 147  (19.5ms) commit transaction Redirected to http://test.host/blog/posts/147-tis-is-a-blog-post-title Completed 302 Found in 25ms (ActiveRecord: 20.4ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 147]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 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" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.219826' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.1ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"52", "post_id"=>"147"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "147"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 147 AND "blog_comments"."id" = ? LIMIT 1 [["id", "52"]]  (0.1ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 147 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 147 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 52]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.230529' WHERE "blog_posts"."id" = 147  (10.9ms) commit transaction Redirected to http://test.host/blog/posts/147-tis-is-a-blog-post-title Completed 302 Found in 17ms (ActiveRecord: 11.8ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 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" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.250462' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (4.5ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"53", "post_id"=>"147"} User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.3ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:29:29 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 147], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:29:29 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" = 147 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:29:29.268020' WHERE "blog_posts"."id" = 147 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (3.2ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"54", "post_id"=>"147"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 55ms (Views: 54.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 2ms (ActiveRecord: 0.0ms) User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (23.1ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.5ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (12.7ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (10.4ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (6.6ms) commit transaction Redirected to http://test.host/blog/posts/162-something-new Completed 302 Found in 19ms (ActiveRecord: 7.4ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (15.4ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.6ms) 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, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (4.2ms) commit transaction Redirected to http://test.host/blog/posts/163-something-new Completed 302 Found in 19ms (ActiveRecord: 5.1ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (18.7ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (21.0ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.3ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (4.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (12.8ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.7ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (3.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (18.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (3.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 218], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (19.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (23.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 219], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (20.4ms) commit transaction SQL (3.9ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) 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", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (24.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (14.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (20.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (5.6ms) commit transaction  (0.0ms) begin transaction 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", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00], ["username", "bodacious"]]  (4.1ms) commit transaction  (0.0ms) begin transaction 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", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:29:29 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.6ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (7.6ms) DELETE FROM "blog_posts" SQL (18.0ms) DELETE FROM "blog_posts" Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (6.1ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (20.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (15.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (19.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (16.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (14.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) 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, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (13.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (18.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (23.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (16.0ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "bodacious"]]  (25.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (16.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:30 UTC +00:00], ["username", "Jeronimo"]]  (20.4ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 231 LIMIT 1  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "Jeronimo"]]  (2.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 232 LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 172 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 172 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 172]]  (3.1ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 173 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 173 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 173]]  (14.4ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 174 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 174 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 174]]  (2.9ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 175 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 175 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 175]]  (6.0ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 176 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 176 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 176]]  (15.1ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 177 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 177 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 177]]  (2.9ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 178 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 178 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 178]]  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) 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", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (19.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) 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", Wed, 16 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (3.5ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 235], ["blogger_type", "User"], ["body", "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, 15 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 236], ["blogger_type", "User"], ["body", "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, 14 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (3.2ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 237], ["blogger_type", "User"], ["body", "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, 13 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (2.9ms) SELECT "blog_posts".* FROM "blog_posts"  (8.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (5.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 238], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 12 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (3.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 239], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 11 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (12.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 240], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 10 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (3.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 241], ["blogger_type", "User"], ["body", "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, 09 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (6.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 242], ["blogger_type", "User"], ["body", "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, 08 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (8.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 243], ["blogger_type", "User"], ["body", "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, 07 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (60.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 244], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 06 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (24.3ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 245], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 05 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (22.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (15.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 246], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 04 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (7.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 247], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 03 Jan 2013 21:29:31 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:29:31 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.6ms) commit transaction Blogit::Post Load (0.3ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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  Connecting to database specified by database.yml 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" = 179 Processing by Blogit::CommentsController#create as JS Parameters: {"post_id"=>179, "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (4.4ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]]  (0.1ms) begin transaction SQL (22.0ms) 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 179 SQL (17.8ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.552482' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (3.2ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/comments/create.js.erb (2.8ms) Completed 200 OK in 227ms (Views: 17.7ms | ActiveRecord: 48.0ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 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" = 179 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"179", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "179"]]  (0.1ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 179 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.765257' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.2ms) commit transaction Redirected to http://test.host/blog/posts/179-tis-is-a-blog-post-title Completed 302 Found in 16ms (ActiveRecord: 4.5ms)  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"179", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "179"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 179 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.786331' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.3ms) commit transaction Redirected to http://test.host/blog/posts/179-tis-is-a-blog-post-title Completed 302 Found in 19ms (ActiveRecord: 8.4ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1 Processing by Blogit::CommentsController#create as HTML Parameters: {"post_id"=>"179", "comment"=>{"name"=>"Gavin", "email"=>"gavin@gavinmorrice.com", "website"=>"http://gavinmorrice.com", "body"=>"I once saw a child the size of a tangerine!"}} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "179"]]  (0.0ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 UTC +00:00], ["website", "http://gavinmorrice.com"]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.1ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) + 1 WHERE "blog_posts"."id" = 179 SQL (0.4ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.810482' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.3ms) commit transaction Redirected to http://test.host/blog/posts/179-tis-is-a-blog-post-title Completed 302 Found in 19ms (ActiveRecord: 6.7ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.1ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 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" = 179 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.836322' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (18.0ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]]  (0.2ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 Processing by Blogit::CommentsController#destroy as JS Parameters: {"id"=>59, "post_id"=>179} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]] Blogit::Comment Load (0.2ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 AND "blog_comments"."id" = ? LIMIT 1 [["id", 59]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 179 SQL (0.2ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 59]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.873900' WHERE "blog_posts"."id" = 179  (17.6ms) commit transaction Completed 200 OK in 26ms (Views: 1.8ms | ActiveRecord: 18.8ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 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" = 179 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.902118' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (10.7ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"60", "post_id"=>"179"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "179"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 AND "blog_comments"."id" = ? LIMIT 1 [["id", "60"]]  (0.0ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.2ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 179 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 60]] SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.923135' WHERE "blog_posts"."id" = 179  (9.8ms) commit transaction Redirected to http://test.host/blog/posts/179-tis-is-a-blog-post-title Completed 302 Found in 15ms (ActiveRecord: 10.7ms) Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", 179]]  (0.1ms) SELECT COUNT(*) FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.3ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 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" = 179 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.944526' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.8ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"61", "post_id"=>"179"} Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = ? LIMIT 1 [["id", "179"]] Blogit::Comment Load (0.1ms) SELECT "blog_comments".* FROM "blog_comments" WHERE "blog_comments"."post_id" = 179 AND "blog_comments"."id" = ? LIMIT 1 [["id", "61"]]  (0.1ms) begin transaction Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" WHERE "blog_posts"."id" = 179 LIMIT 1 SQL (0.3ms) UPDATE "blog_posts" SET "comments_count" = COALESCE("comments_count", 0) - 1 WHERE "blog_posts"."id" = 179 SQL (0.1ms) DELETE FROM "blog_comments" WHERE "blog_comments"."id" = ? [["id", 61]] SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.965524' WHERE "blog_posts"."id" = 179  (3.6ms) commit transaction Redirected to http://test.host/blog/posts/179-tis-is-a-blog-post-title Completed 302 Found in 10ms (ActiveRecord: 4.7ms) Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 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" = 179 SQL (0.2ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.977519' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.1ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"62", "post_id"=>"179"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" LIMIT 1  (0.0ms) begin transaction 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, 17 Jan 2013 21:35:06 UTC +00:00], ["email", "gavin@gavinmorrice.com"], ["name", "Gavin"], ["post_id", 179], ["state", nil], ["updated_at", Thu, 17 Jan 2013 21:35:06 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" = 179 SQL (0.3ms) UPDATE "blog_posts" SET "updated_at" = '2013-01-17 21:35:06.991138' WHERE "blog_posts"."id" = 179 Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (15.8ms) commit transaction  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::CommentsController#destroy as HTML Parameters: {"id"=>"63", "post_id"=>"179"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.1ms)  (0.1ms) SELECT COUNT(*) FROM "blog_comments" Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>""} Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as HTML Parameters: {"page"=>"2"} Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#index as XML Parameters: {"page"=>""} Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 5ms (Views: 1.9ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1 Processing by Blogit::PostsController#new as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#new as HTML User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction 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"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (18.4ms) commit transaction Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms) Processing by Blogit::PostsController#edit as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms) User Load (0.1ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.2ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (9.5ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 251], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (7.5ms) commit transaction Redirected to http://test.host/blog/posts/194-something-new Completed 302 Found in 22ms (ActiveRecord: 8.5ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (11.5ms) commit transaction Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}}  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 252], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Something new"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (11.4ms) commit transaction Redirected to http://test.host/blog/posts/195-something-new Completed 302 Found in 22ms (ActiveRecord: 12.0ms) Processing by Blogit::PostsController#update as HTML Parameters: {"id"=>"1", "post"=>{"title"=>"Something new"}} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (18.8ms) commit transaction Processing by Blogit::PostsController#show as HTML Parameters: {"id"=>"1"} Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (15.0ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.0ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (3.0ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.0ms) begin transaction  (0.1ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 10ms (ActiveRecord: 0.4ms) User Load (0.2ms) SELECT "users".* FROM "users" LIMIT 1  (0.0ms) begin transaction SQL (0.7ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (20.5ms) commit transaction Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"}  (0.1ms) begin transaction  (0.0ms) commit transaction Redirected to http://test.host/blog/posts Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Processing by Blogit::PostsController#destroy as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" IS NULL LIMIT 1 Redirected to http://test.host/blog/ Filter chain halted as :login_required rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.2ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 257], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (15.5ms) commit transaction Rendered /Users/Gavin/Gems/blogit/app/views/blogit/posts/_no_comments.html.erb (0.4ms)  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 258], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (29.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (16.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 259], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (9.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 260], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (2.8ms) commit transaction SQL (2.8ms) DELETE FROM "blog_posts"  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (6.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 261], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 13 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 2"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (3.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 262], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 27 Jul 2012 23:00:00 UTC +00:00], ["title", "Great Post 3"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 263], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 25 Dec 2011 00:00:00 UTC +00:00], ["title", "Great post 1"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (11.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00], ["username", "bodacious"]]  (17.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 264], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 02 Sep 2012 23:00:00 UTC +00:00], ["title", "Great Post 4"], ["updated_at", Thu, 17 Jan 2013 21:35:07 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (18.9ms) commit transaction Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (2.9ms) DELETE FROM "blog_posts" SQL (2.6ms) DELETE FROM "blog_posts" Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC SQL (15.8ms) DELETE FROM "blog_posts"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 265], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 266], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (20.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 267], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (21.3ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 268], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (13.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (13.8ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 269], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (15.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (18.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 270], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (15.0ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (15.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 271], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (14.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "Jeronimo"]]  (3.6ms) commit transaction User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 272 LIMIT 1  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "Jeronimo"]]  (2.5ms) commit transaction User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 273 LIMIT 1 Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 204 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 204 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.3ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 204]]  (6.5ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 205 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 205 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 205]]  (2.6ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 206 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 206 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 206]]  (2.5ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 207 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 207 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 207]]  (3.1ms) commit transaction  (0.1ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 208 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 208 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 208]]  (4.5ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.2ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 209 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 209 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 209]]  (5.9ms) commit transaction  (0.0ms) begin transaction ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 210 AND "taggings"."taggable_type" = 'Blogit::Post' ActsAsTaggableOn::Tagging Load (0.1ms) SELECT "taggings".* FROM "taggings" WHERE "taggings"."taggable_id" = 210 AND "taggings"."taggable_type" = 'Blogit::Post' AND (taggings.context = 'tags') SQL (0.2ms) DELETE FROM "blog_posts" WHERE "blog_posts"."id" = ? [["id", 210]]  (5.9ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 274], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (17.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (5.6ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 275], ["blogger_type", "User"], ["body", "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, 16 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (16.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (19.0ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 276], ["blogger_type", "User"], ["body", "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, 15 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (14.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (3.5ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 277], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Mon, 14 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (7.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (4.1ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 278], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sun, 13 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (3.8ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 279], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 12 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (5.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.9ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 280], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 11 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (2.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (20.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 281], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 10 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (13.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (3.4ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 282], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Wed, 09 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 283], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Tue, 08 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (8.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (3.7ms) commit transaction  (0.0ms) begin transaction SQL (0.3ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 284], ["blogger_type", "User"], ["body", "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, 07 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (5.1ms) commit transaction  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (2.7ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 285], ["blogger_type", "User"], ["body", "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, 06 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"   (11.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (10.3ms) commit transaction  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 286], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Sat, 05 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.1ms) SELECT "blog_posts".* FROM "blog_posts"  (22.7ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (12.8ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 287], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Fri, 04 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"   (21.0ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "users" ("created_at", "password", "updated_at", "username") VALUES (?, ?, ?, ?) [["created_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["password", "password"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00], ["username", "bodacious"]]  (12.6ms) commit transaction  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "blog_posts" ("blogger_id", "blogger_type", "body", "comments_count", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["blogger_id", 288], ["blogger_type", "User"], ["body", "This is the body of the blog post - you'll see it's a lot bigger than the title"], ["comments_count", 0], ["created_at", Thu, 03 Jan 2013 21:35:09 UTC +00:00], ["title", "Tis is a blog post title"], ["updated_at", Thu, 17 Jan 2013 21:35:09 UTC +00:00]] Blogit::Post Load (0.2ms) SELECT "blog_posts".* FROM "blog_posts"  (21.5ms) commit transaction Blogit::Post Load (0.4ms) SELECT "blog_posts".* FROM "blog_posts" ORDER BY created_at DESC LIMIT 1 OFFSET 0 Blogit::Post Load (0.2ms) 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